:root {
    --primary: #6C63FF;
    --primary-dark: #4B0082;
    --secondary: #2D3436;
    --accent: #FF7675;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1E1E2C;
    --text-light: #636E72;
    --border-color: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Components */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(75, 0, 130, 0.3);
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Navigation */
header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

/* Footer style */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-logo img {
    filter: brightness(0) invert(1);
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* New Hero Styling */
.hero-content {
    position: relative;
    z-index: 2;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 20px;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.country-card {
    min-width: 300px;
    flex: 0 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.country-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 24px;
    color: var(--white);
}

.badge {
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Carousel Stats */
.carousel-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.nav-btn.dark-mode {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-btn.dark-mode:hover {
    background: white;
    color: var(--primary);
}

/* Utils */
.flex.justify-between {
    justify-content: space-between;
}

.flex.justify-center {
    justify-content: center;
}

.flex.items-center {
    align-items: center;
}

.text-white {
    color: white !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: #0a0e27;
}

.relative {
    position: relative;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    .hero-btns {
        flex-direction: column;
    }

    .country-card {
        min-width: 280px;
        height: 350px;
    }
}

/* =========================================
   LEGACY ELEMENTOR SUPPORT (BLOG POSTS)
   ========================================= */
/* Force Elementor headings to use premium font */
.elementor-heading-title {
    font-family: var(--font-heading) !important;
    color: var(--primary);
    font-weight: 700;
}

/* Fix Elementor text body */
.elementor-widget-text-editor {
    font-family: var(--font-body) !important;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Ensure images are responsive */
.elementor-widget-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Constrain Elementor width to match site container */
.elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Fix Elementor buttons */
.elementor-button {
    background-color: var(--primary) !important;
    font-family: var(--font-heading);
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: 600;
}

/* Hide broken or empty Elementor spacers/dividers if needed */
.elementor-divider {
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

/* =========================================
   MEGA MENU STYLES
   ========================================= */
/* Desktop Mega Menu */
@media (min-width: 992px) {
    .nav-item {
        position: relative;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 1200px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 0 0 8px 8px;
        top: 120%;
        /* Offset for animation */
    }

    .nav-item:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .mega-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .mega-content.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .mega-column h4 {
        color: var(--primary);
        /* Blue headings */
        font-family: var(--font-heading);
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 0.5rem;
    }

    /* Special styling for Resources column */
    .mega-column.resources-col {
        background: #f8f9fa;
        padding: 1.5rem;
        border-radius: 8px;
        margin: -1rem 0;
        /* Align with top/bottom padding */
    }

    .mega-menu a {
        display: block;
        color: var(--text-dark);
        opacity: 0.8;
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
        transition: color 0.2s;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mega-menu a:hover {
        color: var(--secondary);
        opacity: 1;
        transform: translateX(3px);
    }

    .mega-menu a i {
        display: none;
        /* Hide icons in menu links for cleaner look */
    }

    /* Featured Article Card in Menu */
    .menu-article-card {
        background: var(--primary-dark);
        color: white;
        padding: 1.5rem;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .menu-article-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        transition: opacity 0.3s;
    }

    .menu-article-card:hover img {
        opacity: 0.2;
    }

    .menu-article-content {
        position: relative;
        z-index: 2;
    }
}

/* Mobile adjustments (Hamburger & Drawer) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 0.5rem;
}

/* Submenu toggle arrow for mobile (injected by JS) */
.mobile-submenu-toggle {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .site-header .nav-content {
        justify-content: space-between;
    }

    /* Drawer Navigation */
    .site-header nav {
        position: fixed;
        top: 76px;
        /* Approx header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        background: white;
        padding: 1rem 1.5rem 3rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
        border-top: 1px solid #eee;
        display: block !important;
        /* Ensure it's not hidden by flex issues */
    }

    .site-header nav.active {
        transform: translateX(0);
        box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, 0.05);
    }

    /* Reset Nav Links layout */
    .nav-links {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Main Link Styling */
    .nav-item>a {
        padding: 1.2rem 0 !important;
        width: auto;
        flex-grow: 1;
        font-size: 1.1rem !important;
    }

    /* Hide desktop chevron in link */
    .nav-item>a i {
        display: none;
    }

    /* Mobile Toggle Button */
    .mobile-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        color: var(--primary);
        cursor: pointer;
        border-left: 1px solid #f9f9f9;
    }

    /* Mega Menu (Mobile Accordion) */
    .mega-menu {
        display: none;
        /* Hidden by default */
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0 0 1rem 0;
        background: transparent;
        border-radius: 0;
        top: auto;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding-left: 0.5rem;
    }

    /* Hide hover effects */
    .nav-item:hover .mega-menu {
        display: none;
    }

    /* Expanded State */
    .nav-item.mobile-expanded .mega-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .nav-item.mobile-expanded .mobile-submenu-toggle i {
        transform: rotate(180deg);
        transition: transform 0.2s;
    }

    /* Content Layout */
    .mega-content,
    .mega-content.cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mega-column {
        padding-left: 1rem;
        border-left: 2px solid #eee;
    }

    .mega-column h4 {
        font-size: 1rem;
        color: var(--text-dark);
        border-bottom: none;
        margin-bottom: 0.8rem;
    }

    .mega-column.resources-col {
        background: #f0f7ff;
        margin: 1rem -1rem -1rem;
        /* Stretch full width */
        border-radius: 4px;
        border-left: none;
    }
}


/* =========================================
   HOMEPAGE REDESIGN (SPLIT HERO & SECTIONS)
   ========================================= */

/* Split Hero */
.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 85vh;
    background: white;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text-side {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-heading {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-heading span {
    color: #b0b0b0;
    /* Light grey for 'Nationalities' */
    font-style: italic;
    /* Serif style if font supports, or just italic */
    font-family: 'Times New Roman', serif;
    /* Fallback for serif style */
    display: block;
    margin-top: 0.5rem;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-company {
        width: 100%;
        text-align: center;
        display: block;
    }

    .hero-text-side {
        padding: 3rem 1.5rem;
    }
}

.btn-company {
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    background: transparent;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-company:hover {
    background: var(--primary-dark);
    color: white;
}

.hero-image-side {
    position: relative;
    background: #f0f0f0;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Footer (below hero) */
.hero-stats-footer {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-dark);
}

.stat-text h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 0;
}

.stat-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* 360 Approach Section */
.section-360 {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.section-360 h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-360 p.intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.card-360 {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
}

.card-360:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .section-360 {
        padding: 3rem 0;
    }

    .section-360 h2 {
        font-size: 1.8rem;
    }

    .card-360 {
        margin-bottom: 2rem;
    }
}

.icon-360 {
    font-size: 2rem;
    color: var(--text-light);
    /* Or primary */
    margin-bottom: 1.5rem;
}

.card-360 h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

/* Citizenship Intro */
.citizenship-intro {
    padding: 4rem 0 2rem;
    background: #f9f9f9;
    /* Or white depending on flow */
}

.citizenship-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.citizenship-header h2 {
    font-size: 2.8rem;
    max-width: 500px;
    color: var(--primary-dark);
}

.citizenship-header h2 span {
    font-family: 'Times New Roman', serif;
    font-style: italic;
    color: #b0b0b0;
    display: inline-block;
    margin-left: 0.5rem;
}

.citizenship-desc {
    max-width: 500px;
    text-align: right;
}

.citizenship-desc p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .citizenship-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .citizenship-header h2 {
        font-size: 2.2rem;
    }

    .citizenship-desc {
        text-align: left;
        max-width: 100%;
    }
}

/* =========================================
   COUNTRY PAGE STYLES (GOLDEN TEMPLATE)
   ========================================= */

/* Country Header (Split) */
.country-header {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
    /* Slightly shorter than home hero */
    background: white;
}

@media (min-width: 992px) {
    .country-header {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .country-header {
        min-height: auto;
    }

    .country-header-text {
        padding: 4rem 1.5rem;
        text-align: left;
    }

    .country-title {
        font-size: 2.8rem;
    }

    .country-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

.country-header-text {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

.country-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.country-subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    font-family: 'Times New Roman', serif;
    font-style: italic;
    margin-bottom: 2rem;
}

.country-header-image {
    position: relative;
    background: #f0f0f0;
}

.country-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blue Stats Bar */
.stats-bar-blue {
    background: var(--primary);
    /* Vibrant Blue */
    color: white;
    padding: 2.5rem 0;
}

.stats-blue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 992px) {
    .stats-blue-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .stat-blue-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 1.5rem;
    }

    .stat-blue-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.stat-blue-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-blue-item:last-child {
    border-right: none;
}

.stat-blue-item h4 {
    font-size: 1.8rem;
    /* Big number */
    margin: 0 0 0.5rem 0;
    color: white;
    font-weight: 700;
}

.stat-blue-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-heading {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .content-heading {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
}

/* Investment Options */
.investment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards likely */
    }
}

.investment-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    background: white;
}

.investment-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.inv-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.inv-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1rem 0;
}

/* Benefits List */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    color: var(--green, #27ae60);
    /* Green check */
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Mobile Responsiveness for Contact Section */
@media (max-width: 768px) {
    .contact-card {
        padding: 2rem !important;
        grid-template-columns: 1fr !important;
    }

    .contact-card h2 {
        font-size: 1.8rem;
    }

    h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
}

/* Mobile Responsiveness for Main Hero */
.main-hero-text {
    font-size: 4rem;
}

.main-hero-sub {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .main-hero-text {
        font-size: 2.2rem !important;
    }

    .main-hero-sub {
        font-size: 1.1rem !important;
    }
}