
    /* ============ GLOBAL STYLES ============ */
    :root {
        --primary-dark: #0d2147;
        --primary-light: #1a365d;
        --accent-color: #2CB3A9;
        --light-color: #f8f9fa;
        --dark-color: #2D3748;
        --gray-color: #4A5568;
    }
    
    body {
        padding-top: 70px;
        position: relative;
    }
    
    html {
        scroll-padding-top: 80px;
    }
    
    /* Fix section spacing consistency */
    section, .pb_section {
        padding: 80px 0;
    }
    
    .bg-light {
        background-color: #f8f9fa !important;
    }
    
    /* Fix heading consistency */
    .heading-border-top {
        position: relative;
        padding-top: 20px;
    }
    
    .heading-border-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--accent-color);
    }
    
    .text-center .heading-border-top::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Fix card consistency */
    .card {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }
    
    /* Fix button consistency */
    .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: #269c94;
        border-color: #269c94;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(44, 179, 169, 0.3);
    }
    
    /* Fix media object alignment */
    .pb_media_v1 {
        display: flex;
        align-items: flex-start;
    }
    
    .pb_media_v1 .icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
    
    .pb_media_v1 .media-body {
        flex: 1;
    }
    
    /* Fix testimonial/insights card alignment */
    .insight-card, .testimonial-card {
        height: 100%;
        margin-bottom: 0;
    }
    
    .insight-card .card-body, .testimonial-card .card-body {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    /* Fix form alignment */
    .form-control {
        border-radius: 4px;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
    }
    
    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0.2rem rgba(44, 179, 169, 0.25);
    }
    
    /* Fix footer alignment */
    .pb_footer {
        padding: 40px 0;
        background-color: var(--primary-dark) !important;
        color: white;
    }
    
    .pb_footer a {
        color: white;
        text-decoration: none;
    }
    
    .pb_footer a:hover {
        color: var(--accent-color);
    }
    
    .pb_footer .list-inline-item a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }
    
    .pb_footer .list-inline-item a:hover {
        background-color: var(--accent-color);
        transform: translateY(-3px);
    }
    
    /* Under Construction Styling */
    .under-construction {
        background: #f8f9fa;
        border: 2px dashed #dee2e6;
        border-radius: 8px;
        padding: 40px;
        text-align: center;
        color: #6c757d;
    }
    
    .under-construction i {
        font-size: 3rem;
        color: #2CB3A9;
        margin-bottom: 20px;
    }
    
    /* Missing Images Placeholder */
    .hero-image-placeholder, .about-image-placeholder {
        background: linear-gradient(135deg, #0d2147 0%, #1a365d 100%);
        padding: 60px 40px;
        border-radius: 8px;
    }
    
    .hero-image-placeholder i, .about-image-placeholder i {
        font-size: 4rem;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* ============ HERO SECTION ============ */
    .hero-section {
        position: relative;
        min-height: 90vh;
        overflow: hidden;
        background: linear-gradient(to right, rgba(13, 33, 71, 0.9) 0%, rgba(13, 33, 71, 0.8) 100%);
        margin-top: -70px;
        padding-top: 70px;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        padding-top: 80px;
    }
    
    .min-vh-80 {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-description {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* SCHEDULE CONSULTATION BUTTON FIX */
    .hero-buttons .btn-outline-light {
        padding: 12px 30px;
        font-weight: 600;
        background: transparent !important;
        color: #ffffff !important;
        border: 2px solid #ffffff !important;
    }
    
    .hero-buttons .btn-outline-light:hover {
        background: #ffffff !important;
        color: #0d2147 !important;
        border-color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    }
    
    .hero-image-container {
        position: relative;
    }
    
    .hero-image-frame {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }
    
    .scroll-link {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        line-height: 40px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .scroll-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(5px);
    }
    
    /* ============ NAVBAR STYLES ============ */
    #pb-navbar.navbar {
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        background-color: #343a40 !important;
        min-height: 70px;
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        width: 100%;
    }
    
    #pb-navbar.navbar:not(.scrolled) {
        background-color: #343a40 !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    #pb-navbar.navbar.scrolled {
        background-color: #ffffff !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 0.3rem 0;
    }
    
    /* LOGO STYLES */
    .nav-logo-img {
        height: 45px;
        width: auto;
        transition: all 0.3s ease;
        filter: brightness(0) invert(1);
    }
    
    #pb-navbar.navbar.scrolled .nav-logo-img {
        filter: none;
    }
    
    /* DESKTOP NAVIGATION */
    #pb-navbar.navbar .navbar-nav .nav-link,
    #pb-navbar.navbar .nav-menu-link {
        color: #ffffff !important;
        font-weight: 600;
        padding: 0.75rem 1rem !important;
        border-radius: 4px;
        transition: all 0.3s ease;
        position: relative;
        font-family: 'Montserrat', sans-serif;
    }
    
    #pb-navbar.navbar.scrolled .navbar-nav .nav-link,
    #pb-navbar.navbar.scrolled .nav-menu-link {
        color: #2D3748 !important;
    }
    
    #pb-navbar.navbar .navbar-nav .nav-link:hover,
    #pb-navbar.navbar .nav-menu-link:hover {
        color: #f8f9fa !important;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    #pb-navbar.navbar.scrolled .navbar-nav .nav-link:hover,
    #pb-navbar.navbar.scrolled .nav-menu-link:hover {
        color: #0d2147 !important;
        background-color: rgba(13, 33, 71, 0.05);
    }
    
    /* LANGUAGE BUTTON */
    .nav-lang-btn {
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        color: #ffffff !important;
        background: transparent !important;
        padding: 0.375rem 0.75rem;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
        font-family: 'Montserrat', sans-serif;
    }
    
    #pb-navbar.navbar.scrolled .nav-lang-btn {
        border: 1px solid #E2E8F0 !important;
        color: #4A5568 !important;
        background: #ffffff !important;
    }
    
    .nav-lang-btn:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        transform: translateY(-1px);
    }
    
    #pb-navbar.navbar.scrolled .nav-lang-btn:hover {
        background-color: #f8f9fa !important;
        border-color: #CBD5E0 !important;
        color: #0d2147 !important;
    }
    
    /* CONTACT BUTTON */
    .nav-contact-btn {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        color: #0d2147 !important;
        border: none !important;
        padding: 0.5rem 1.5rem;
        border-radius: 4px;
        font-weight: 600;
        transition: all 0.3s ease;
        font-family: 'Montserrat', sans-serif;
    }
    
    #pb-navbar.navbar.scrolled .nav-contact-btn {
        background: linear-gradient(135deg, #0d2147 0%, #1a365d 100%) !important;
        color: #ffffff !important;
    }
    
    .nav-contact-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* DROPDOWN MENU */
    .dropdown-menu {
        min-width: 280px;
        border-radius: 8px;
        border: 1px solid #E2E8F0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px !important;
    }
    
    .dropdown-item {
        transition: all 0.2s ease;
        color: #2D3748 !important;
        font-family: 'Montserrat', sans-serif;
    }
    
    .dropdown-item:hover {
        background-color: #f8f9fa;
        padding-left: 1.5rem;
        color: #0d2147 !important;
    }
    
    /* ============ MOBILE MENU ============ */
    @media (max-width: 992px) {
        /* Mobile Menu Panel */
        .navbar-collapse {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            padding: 20px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            max-height: calc(100vh - 70px);
            overflow-y: auto;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        #pb-navbar.navbar:not(.scrolled) .navbar-collapse {
            background: #343a40 !important;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        #pb-navbar.navbar.scrolled .navbar-collapse {
            background: #ffffff !important;
            border-top: 1px solid rgba(226, 232, 240, 0.8);
        }
        
        .nav-item {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid rgba(226, 232, 240, 0.3);
            padding-bottom: 0.5rem;
        }
        
        #pb-navbar.navbar:not(.scrolled) .nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        #pb-navbar.navbar.scrolled .nav-item {
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
        }
        
        .nav-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        /* MOBILE MENU LINKS */
        #pb-navbar.navbar:not(.scrolled) .navbar-collapse .nav-menu-link {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.05) !important;
        }
        
        #pb-navbar.navbar.scrolled .navbar-collapse .nav-menu-link {
            color: #2D3748 !important;
            background: rgba(13, 33, 71, 0.03) !important;
        }
        
        .navbar-collapse .nav-menu-link {
            border: none !important;
            padding: 12px 16px !important;
            justify-content: flex-start !important;
            border-radius: 8px !important;
            margin-bottom: 5px !important;
            display: flex !important;
            align-items: center !important;
            transition: all 0.3s ease !important;
        }
        
        /* Mobile menu items hover */
        #pb-navbar.navbar:not(.scrolled) .navbar-collapse .nav-menu-link:hover {
            background: rgba(255, 255, 255, 0.15) !important;
            color: #ffffff !important;
            transform: translateX(5px) !important;
        }
        
        #pb-navbar.navbar.scrolled .navbar-collapse .nav-menu-link:hover {
            background: rgba(44, 179, 169, 0.1) !important;
            color: #0d2147 !important;
            transform: translateX(5px) !important;
        }
        
        /* Mobile language buttons */
        .nav-mobile-lang-btn {
            border: 1px solid !important;
            padding: 0.75rem !important;
            font-family: 'Montserrat', sans-serif;
            border-radius: 8px !important;
            transition: all 0.3s ease !important;
            margin: 0 2px !important;
            font-weight: 500 !important;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
        }
        
        #pb-navbar.navbar:not(.scrolled) .nav-mobile-lang-btn {
            border-color: rgba(255, 255, 255, 0.3) !important;
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.1) !important;
        }
        
        #pb-navbar.navbar.scrolled .nav-mobile-lang-btn {
            border-color: #E2E8F0 !important;
            color: #4A5568 !important;
            background: #f8f9fa !important;
        }
        
        /* Mobile contact button */
        .nav-contact-btn-mobile {
            border: none !important;
            padding: 0.875rem 1.5rem !important;
            border-radius: 8px !important;
            font-weight: 600 !important;
            font-size: 1rem !important;
            margin-top: 1rem !important;
            box-shadow: 0 4px 10px rgba(13, 33, 71, 0.2) !important;
            transition: all 0.3s ease !important;
        }
        
        #pb-navbar.navbar:not(.scrolled) .nav-contact-btn-mobile {
            background: #ffffff !important;
            color: #0d2147 !important;
        }
        
        #pb-navbar.navbar.scrolled .nav-contact-btn-mobile {
            background: linear-gradient(135deg, #0d2147 0%, #1a365d 100%) !important;
            color: #ffffff !important;
        }
        
        /* Mobile navbar toggler */
        .navbar-toggler {
            border: 1px solid;
            padding: 0.375rem 0.75rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        #pb-navbar.navbar:not(.scrolled) .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.1);
        }
        
        #pb-navbar.navbar.scrolled .navbar-toggler {
            border-color: #E2E8F0;
            background: #ffffff;
        }
        
        /* Mobile dropdown menu adjustments */
        .navbar-collapse .dropdown-menu {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            padding-left: 20px !important;
        }
    }
    
    /* ============ DESKTOP-ONLY MENU STYLES ============ */
    @media (min-width: 993px) {
        /* BASE NAV LINK STYLES */
        .nav-menu-link,
        #practiceDropdown {
            padding: 12px 22px !important;
            margin: 0 5px !important;
            border-radius: 8px !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            position: relative !important;
            font-weight: 600 !important;
            display: inline-block !important;
            text-decoration: none !important;
            font-size: 16px !important;
            line-height: 1.5 !important;
        }
        
        #pb-navbar.navbar:not(.scrolled) .nav-menu-link,
        #pb-navbar.navbar:not(.scrolled) #practiceDropdown {
            color: #ffffff !important;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) !important;
        }
        
        #pb-navbar.navbar.scrolled .nav-menu-link,
        #pb-navbar.navbar.scrolled #practiceDropdown {
            color: #1a202c !important;
            text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8) !important;
        }
        
        /* HOVER STATES */
        #pb-navbar.navbar:not(.scrolled) .nav-menu-link:hover:not(.active),
        #pb-navbar.navbar:not(.scrolled) #practiceDropdown:hover:not(.active) {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.15) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        }
        
        #pb-navbar.navbar.scrolled .nav-menu-link:hover:not(.active),
        #pb-navbar.navbar.scrolled #practiceDropdown:hover:not(.active) {
            color: #0d2147 !important;
            background: rgba(13, 33, 71, 0.1) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 12px rgba(13, 33, 71, 0.12) !important;
        }
        
        /* ACTIVE STATES */
        #pb-navbar.navbar:not(.scrolled) .nav-menu-link.active,
        #pb-navbar.navbar:not(.scrolled) #practiceDropdown.active {
            color: #ffffff !important;
            font-weight: 700 !important;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
        }
        
        #pb-navbar.navbar.scrolled .nav-menu-link.active,
        #pb-navbar.navbar.scrolled #practiceDropdown.active {
            color: #ffffff !important;
            font-weight: 700 !important;
            background: linear-gradient(135deg, #0d2147 0%, #1a3a7c 100%) !important;
        }
        
        /* Dropdown menu styling */
        .dropdown-menu {
            border: 1px solid rgba(13, 33, 71, 0.15) !important;
            border-radius: 8px !important;
            box-shadow: 0 10px 30px rgba(13, 33, 71, 0.18) !important;
            margin-top: 8px !important;
            padding: 8px 0 !important;
            min-width: 220px !important;
        }
        
        /* Dropdown items */
        .dropdown-item {
            padding: 10px 20px !important;
            margin: 2px 8px !important;
            border-radius: 6px !important;
            transition: all 0.25s ease !important;
            font-weight: 500 !important;
            color: #2d3748 !important;
            border-left: 3px solid transparent !important;
        }
        
        .dropdown-item:hover:not(.active) {
            background: rgba(13, 33, 71, 0.08) !important;
            padding-left: 24px !important;
            color: #0d2147 !important;
            border-left: 3px solid rgba(13, 33, 71, 0.3) !important;
        }
    }
    
    /* ============ ABOUT SECTION ============ */
    .about-image-frame {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        background: white;
        border: 1px solid #e9ecef;
    }
    
    .about-image-placeholder {
        padding: 40px;
        text-align: center;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .enhanced-accordion .card {
        margin-bottom: 15px;
        border-radius: 8px !important;
        overflow: hidden;
    }
    
    .enhanced-accordion .card-header button {
        transition: all 0.3s ease;
    }
    
    .enhanced-accordion .card-header button:hover {
        background-color: rgba(44, 179, 169, 0.05);
    }
    
    /* ============ LEGAL INSIGHTS ============ */
    #section-legal-insights {
        background-color: #f8f9fa;
    }
    
    .insight-card {
        transition: all 0.3s ease;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .insight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }
    
    .badge-success {
        background-color: rgba(40, 167, 69, 0.1);
        color: #28a745;
    }
    
    .badge-warning {
        background-color: rgba(255, 193, 7, 0.1);
        color: #ffc107;
    }
    
    .badge-info {
        background-color: rgba(23, 162, 184, 0.1);
        color: #17a2b8;
    }
    
    .badge-danger {
        background-color: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }
    
    .badge-secondary {
        background-color: rgba(108, 117, 125, 0.1);
        color: #6c757d;
    }
    
    .badge-dark {
        background-color: rgba(52, 58, 64, 0.1);
        color: #343a40;
    }
    
    /* ============ CONTACT SECTION ============ */
    #section-contact .card {
        height: 100%;
        border-radius: 8px;
    }
    
    #section-contact .card-body {
        padding: 2rem 2.5rem !important;
    }
    
    .contact-info-card {
        background-color: white;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .contact-label {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.3;
        color: #2D3748;
    }
    
    .contact-link {
        font-size: 0.95rem;
        line-height: 1.4;
        display: inline-block;
        word-break: break-word;
        color: #4A5568;
    }
    
    /* Contact Form Styles */
    #contactForm select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232CB3A9' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 16px 12px;
        padding-right: 2.5rem;
    }
    
    /* ============ ATTORNEYS SECTION ============ */
    .attorney-card {
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-radius: 12px;
        overflow: hidden;
        background: #ffffff;
        position: relative;
    }
    
    .attorney-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(13, 33, 71, 0.15) !important;
    }
    
    .attorney-img-container {
        position: relative;
        height: 0;
        padding-top: 75%;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
    }
    
    .attorney-img-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0d2147 0%, #1a365d 100%);
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .attorney-social-links {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .attorney-card:hover .attorney-social-links {
        opacity: 1;
        transform: translateY(0);
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 8px;
        color: #0d2147;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: #2CB3A9;
        color: #ffffff;
        transform: translateY(-3px);
    }
    
    /* ============ RESPONSIVE DESIGN ============ */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-subtitle {
            font-size: 1.6rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .hero-image-container {
            margin-top: 40px;
        }
        
        .about-image-container {
            margin-bottom: 40px;
        }
        
        #section-contact .row {
            flex-direction: column;
        }
        
        #section-contact .col-lg-7.col-xl-7,
        #section-contact .col-lg-5.col-xl-5 {
            max-width: 100%;
            width: 100%;
            padding-right: 0;
            margin-bottom: 2rem;
        }
        
        .contact-title {
            font-size: 1.4rem;
            text-align: center;
        }
        
        .pb_media_v1 {
            flex-direction: column;
            text-align: center;
        }
        
        .pb_media_v1 .icon {
            margin: 0 auto 20px auto;
        }
    }
    
    @media (max-width: 768px) {
        section, .pb_section {
            padding: 60px 0;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .hero-buttons .btn {
            display: block;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .hero-buttons .mr-3 {
            margin-right: 0 !important;
        }
        
        .card-body.p-5 {
            padding: 2rem !important;
        }
        
        #section-contact .card-body {
            padding: 1.75rem !important;
        }
    }
    
    @media (max-width: 576px) {
        section, .pb_section {
            padding: 50px 0;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .btn-primary, .btn-outline-light {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        
        .nav-logo-img {
            height: 35px;
        }
        
        .navbar-collapse {
            padding: 1rem;
            border-radius: 0 0 10px 10px;
        }
        
        .card-body.p-5 {
            padding: 1.5rem !important;
        }
        
        #section-contact .card-body {
            padding: 1.5rem !important;
        }
        
        .contact-title {
            font-size: 1.3rem;
        }
        
        .contact-info-card {
            padding: 1.5rem !important;
        }
    }