
        /* ===== CSS Variables ===== */
        :root {
            /* Colors */
            --color-dark: #0A1520;
            --color-gold: #D4AF37;
            --color-white: #FFFFFF;
            --color-light-gray: #F5F5F5;
            --color-dark-gray: #2C3E50;
            --color-text: #333333;
            
            /* Typography */
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Roboto', sans-serif;
            
            /* Spacing */
            --section-padding: 80px 0;
            --container-width: 1200px;
            
            /* Effects */
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        /* ===== Reset & Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--color-text);
            line-height: 1.6;
            background-color: var(--color-white);
        }
        
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: var(--section-padding);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        h1 {
            font-size: 3rem;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--color-gold);
        }
        
        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }
        
        .btn-primary {
            background-color: var(--color-gold);
            color: var(--color-dark);
        }
        
        .btn-primary:hover {
            background-color: #b8941f;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-gold);
        }
        
        .btn-outline:hover {
            background-color: var(--color-gold);
            color: var(--color-dark);
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
        }
        
        .btn-whatsapp:hover {
            background-color: #1da851;
        }
        
        .section-dark {
            background-color: var(--color-dark);
            color: var(--color-white);
        }
        
        .section-dark h2,
        .section-dark h3 {
            color: var(--color-white);
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-gold {
            color: var(--color-gold);
        }
        
        /* ===== Header ===== */
        .header {
            background-color: var(--color-dark);
            color: var(--color-white);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-white);
        }
        
        .logo span {
            color: var(--color-gold);
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--color-white);
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--color-dark);
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--color-white);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .dropdown-content a:hover {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--color-gold);
        }
        
        .header-contacts {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .contact-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--color-white);
            font-weight: 600;
        }
        
        .contact-link:hover {
            color: var(--color-gold);
        }
        
        .contact-icon {
            background-color: var(--color-gold);
            color: var(--color-dark);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* ===== Hero Section ===== */
        .hero {
            background: linear-gradient(rgba(10, 21, 32, 0.8), rgba(10, 21, 32, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: var(--color-white);
            padding: 180px 0 100px;
            margin-top: 70px;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            color: var(--color-white);
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        /* ===== Experience Section ===== */
        .experience {
            background-color: var(--color-light-gray);
        }
        
        .experience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .experience-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
            padding: 25px 15px;
            background-color: var(--color-white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            color: var(--color-gold);
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 5px;
        }
        
        .stat-text {
            font-size: 1rem;
            color: var(--color-text);
        }
        
        /* ===== Services Section ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: var(--color-white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            background-color: var(--color-dark);
            color: var(--color-gold);
            font-size: 2.5rem;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 30px auto 20px;
        }
        
        .service-content {
            padding: 0 25px 30px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-gold);
            font-weight: 600;
            margin-top: 15px;
        }
        
        .service-link:hover {
            gap: 12px;
        }
        
        /* ===== About Lawyer Section ===== */
        .about-lawyer {
            background-color: var(--color-light-gray);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .lawyer-photo {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .lawyer-photo img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .lawyer-photo:hover img {
            transform: scale(1.03);
        }
        
        .lawyer-bio h2 {
            margin-bottom: 20px;
        }
        
        .lawyer-qualifications {
            margin-top: 30px;
        }
        
        .qualification-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .qualification-icon {
            color: var(--color-gold);
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        /* ===== CTA Section ===== */
        .cta {
            background: linear-gradient(rgba(10, 21, 32, 0.9), rgba(10, 21, 32, 0.9)), url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            text-align: center;
        }
        
        .cta h2 {
            color: var(--color-white);
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* ===== Footer ===== */
        .footer {
            background-color: var(--color-dark);
            color: var(--color-white);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--color-gold);
        }
        
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-links h4 {
            color: var(--color-white);
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-family: var(--font-body);
            font-weight: 600;
        }
        
        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a:hover {
            color: var(--color-gold);
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background-color: var(--color-gold);
            color: var(--color-dark);
        }
        
        /* ===== Mobile Contact Bar ===== */
        .mobile-contact-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--color-dark);
            padding: 15px;
            z-index: 999;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-contact-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        /* ===== Service Page Template ===== */
        .service-header {
            background: linear-gradient(rgba(10, 21, 32, 0.8), rgba(10, 21, 32, 0.9)), url('https://images.unsplash.com/photo-1589391886085-8b6b0ac72a1a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: var(--color-white);
            padding: 150px 0 80px;
            margin-top: 70px;
            text-align: center;
        }
        
        .service-steps {
            margin: 50px 0;
        }
        
        .step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            background-color: var(--color-dark);
            color: var(--color-white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .step-content h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .service-lawyer {
            background-color: var(--color-light-gray);
            border-radius: 8px;
            padding: 40px;
            margin-top: 60px;
        }
        
        .service-lawyer-content {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .service-lawyer-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        /* ===== Responsive Styles ===== */
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            
            .hero h1 { font-size: 3rem; }
            .cta h2 { font-size: 2.5rem; }
            
            .experience-grid,
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-grid.reverse {
                direction: rtl;
            }
            
            .about-grid.reverse > * {
                direction: ltr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: var(--color-dark);
                flex-direction: column;
                padding: 20px;
                transition: left 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .header-contacts {
                display: none;
            }
            
            .hero h1 { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.1rem; }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .experience-stats {
                grid-template-columns: 1fr;
            }
            
            .service-lawyer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .mobile-contact-bar {
                display: block;
            }
            
            section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 576px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 12px 25px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
