        :root {
            --primary-blue: #D4AF37;
            --dark-blue: #0B1F3B;
            --light-blue: #e8f0fe;
            --dark-gray: #333;
            --medium-gray: #666;
            --light-gray: #f5f5f5;
            --border-gray: #ddd;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            min-width: 400px;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: #0B1F3B;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
        }
        
        .logo img {
            height: 75px;
            margin-top: 15px;
        }  
        .logo span {
            color: var(--dark-gray);
        }
        
        .footer-logo {
            height: 55px;
            margin-top: 15px;
        }  

        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 30px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav a:hover {
            color: var(--primary-blue);
        }
        
        nav a.active {
            color: var(--primary-blue);
        }
        
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-blue);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-blue);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255,255,255,1) 100%);
            padding: 150px 0 100px;
            margin-top: 80px;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .hero h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero h1 span {
            color: var(--primary-blue);
        }
        
        .hero p {
            font-size: 18px;
            color: var(--medium-gray);
            margin-bottom: 30px;
        }
        
        .hero-image {
            flex: 1;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 16px;
        }
        
        .btn:hover {
            background-color: var(--dark-blue);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            display: inline-block;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: var(--primary-blue);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            padding: 40px 30px;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-blue);
            font-size: 32px;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--medium-gray);
            margin-bottom: 20px;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .about-text {
            flex: 1;
            padding-right: 50px;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 25px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--medium-gray);
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            margin-right: 15px;
            font-size: 20px;
        }
        
        .contact-form {
            flex: 1;
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--border-gray);
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 70px 0 30px;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding-right: 20px;
        }
        
        .footer-col h3 {
            color: var(--white);
            font-size: 22px;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-blue);
        }
        
        .footer-col p {
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #0B1F3B;
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--primary-blue);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-blue);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }
        
        /* Page Styles */
        .page-header {
            background-color: var(--light-blue);
            padding: 150px 0 80px;
            margin-top: 80px;
            text-align: center;
        }
        
        .page-content {
            padding: 100px 0;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content, .about-content, .contact-container {
                flex-direction: column;
            }
            
            .hero-text, .about-text {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .hero h1 {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--dark-blue);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 30px;
                transition: left 0.3s;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav li {
                margin: 0 0 20px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 34px;
            }
            
            .section-title h2, .about-text h2 {
                font-size: 30px;
            }
            
            .service-card, .contact-form {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .btn {
                padding: 12px 25px;
            }
            
            .section-title h2, .about-text h2 {
                font-size: 26px;
            }
            .logo img{
                height: 60px;
            }
        }
        .about-image-wrapper {
    position: relative;
    display: inline-block;
}

.attorney-card {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1f2a44, #2c3e60);
    color: #fff;
    padding: 20px;
    width: 260px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.attorney-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
}

.attorney-card p {
    margin: 5px 0 15px;
    font-size: 14px;
    color: #d1d5db;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}