@import url('https://fonts.cdnfonts.com/css/avenir');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #2c3e50;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1.2rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 0.8rem 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.2);
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff !important;
            letter-spacing: 1px;
        }
        
        .navbar-brand i {
            color: #d4af37;
            margin-right: 10px;
        }
        
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #d4af37 !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-consult {
            background: linear-gradient(135deg, #d4af37 0%, #c49b2e 100%);
            color: #fff;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
            color: #fff;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%),
                        url(images/banner.jpg);
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }
        
        .hero .subtitle {
            font-size: 1.4rem;
            color: #d4af37;
            margin-bottom: 2rem;
            font-weight: 500;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 600px;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .hero-buttons {
            animation: fadeInUp 1s ease 0.6s both;
        }
        
        .btn-primary-hero {
            background: linear-gradient(135deg, #d4af37 0%, #c49b2e 100%);
            color: #fff;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            margin-right: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
        }
        
        .btn-primary-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
        }
        
        .btn-secondary-hero {
            background: transparent;
            color: #fff;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }
        
        .btn-secondary-hero:hover {
            background: rgba(255,255,255,0.1);
            border-color: #d4af37;
            color: #d4af37;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Practice Areas */
        .practice-areas {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #d4af37 0%, #c49b2e 100%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .practice-card {
            background: #fff;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .practice-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: #d4af37;
        }
        
        .practice-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d4af37 0%, #c49b2e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .practice-card:hover .practice-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .practice-icon i {
            font-size: 2rem;
            color: #fff;
        }
        
        .practice-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a2e;
        }
        
        .practice-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .learn-more {
            color: #d4af37;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .learn-more:hover {
            color: #c49b2e;
            padding-left: 5px;
        }
        
        .learn-more i {
            margin-left: 5px;
            transition: margin-left 0.3s ease;
        }
        
        .learn-more:hover i {
            margin-left: 10px;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
        }
        
        .why-choose .section-title h2,
        .why-choose .section-title p {
            color: #fff;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #d4af37;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .feature-box h5 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .feature-box p {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: #fff;
        }
        
        .testimonial-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 40px;
            margin: 15px;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 3rem;
            color: #d4af37;
            opacity: 0.2;
        }
        
        .testimonial-text {
            color: #666;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4af37 0%, #c49b2e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
            color: #fff;
            font-weight: 600;
        }
        
        .author-info h6 {
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: #d4af37;
            margin: 0;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%231a1a2e" width="1200" height="400"/></svg>');
            background-size: cover;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2.5rem;
        }
        
        /* Footer */
        footer {
            background: #0f172a;
            color: rgba(255,255,255,0.8);
            padding: 60px 0 30px;
        }
        
        .footer-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .footer-brand i {
            color: #d4af37;
        }
        
        .footer-about {
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #d4af37;
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #d4af37;
            padding-left: 5px;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            color: rgba(255,255,255,0.6);
        }
        
        .contact-info i {
            color: #d4af37;
            margin-right: 10px;
            width: 20px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 25px;
            text-align: center;
            color: rgba(255,255,255,0.5);
        }
        
        /* Attorneys Section */
        .attorneys-section {
            padding: 100px 0;
            background: #fff;
        }
        
        .attorney-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .attorney-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .attorney-image {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .attorney-placeholder {
            width: 100%;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: #d4af37;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .attorney-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .attorney-card:hover .attorney-overlay {
            opacity: 1;
        }
        
        .attorney-social {
            display: flex;
            gap: 15px;
        }
        
        .attorney-social a {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.2);
            border: 2px solid #d4af37;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d4af37;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
            text-decoration: none;
        }
        
        .attorney-card:hover .attorney-social a {
            transform: translateY(0);
            opacity: 1;
        }
        
        .attorney-card:hover .attorney-social a:nth-child(1) {
            transition-delay: 0.1s;
        }
        
        .attorney-card:hover .attorney-social a:nth-child(2) {
            transition-delay: 0.2s;
        }
        
        .attorney-card:hover .attorney-social a:nth-child(3) {
            transition-delay: 0.3s;
        }
        
        .attorney-social a:hover {
            background: #d4af37;
            color: #fff;
            transform: translateY(-3px);
        }
        
        .attorney-info {
            padding: 25px;
        }
        
        .attorney-info h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 5px;
        }
        
        .attorney-title {
            color: #d4af37;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .attorney-specialty {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .attorney-specialty i {
            color: #d4af37;
            margin-right: 5px;
        }
        
        .attorney-desc {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
        
        /* Blog Section */
        .blog-section {
            padding: 100px 0;
            background: #f8f9fa;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .blog-image {
            position: relative;
            overflow: hidden;
        }
        
        .blog-placeholder {
            width: 100%;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #d4af37;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            transition: all 0.4s ease;
        }
        
        .blog-card:hover .blog-placeholder {
            transform: scale(1.05);
        }
        
        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #d4af37 0%, #c49b2e 100%);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        
        .blog-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 0.85rem;
            color: #999;
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .blog-meta i {
            color: #d4af37;
        }
        
        .blog-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 12px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .blog-card:hover .blog-content h4 {
            color: #d4af37;
        }
        
        .blog-content p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .read-more {
            color: #d4af37;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more:hover {
            color: #c49b2e;
            padding-left: 5px;
        }
        
        .read-more i {
            margin-left: 8px;
            transition: margin-left 0.3s ease;
        }
        
        .read-more:hover i {
            margin-left: 12px;
        }
        
        .btn-outline-primary-custom {
            background: transparent;
            color: #d4af37;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid #d4af37;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary-custom:hover {
            background: linear-gradient(135deg, #d4af37 0%, #c49b2e 100%);
            color: #fff;
            border-color: #d4af37;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .btn-primary-hero,
            .btn-secondary-hero {
                padding: 12px 30px;
                margin-bottom: 10px;
            }
        }