:root {
    --primary-teal: #25909c;
    --primary-dark: #122d4a;
    --primary-light: #e6f3f5;
    --accent-teal: #1e7a84;
    --accent-dark: #0f1f2f;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
        0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
        0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-secondary);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-section:hover img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin: 0;
    text-decoration: none;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-teal);
    background: var(--primary-light);
}

.dropdown-icon {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-menu li:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 30px;
    min-width: 800px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: 1px solid var(--border-color);
}

.nav-menu li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.mega-menu-content {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.mega-menu-column {
    flex: 0 0 200px;
    min-width: 200px;
}

.mega-menu-content::-webkit-scrollbar {
    height: 6px;
}

.mega-menu-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mega-menu-content::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 3px;
}

.mega-menu-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-teal);
}

.mega-menu-column h4 {
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column li {
    margin-bottom: 8px;
}

.mega-menu-column a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
}

.mega-menu-column a:hover {
    color: var(--primary-teal);
    background: transparent;
}

/* Dropdown styles for 3+ level categories */
.mega-menu-item {
    position: relative;
}

.mega-menu-item.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.mega-submenu-arrow {
    font-size: 10px;
    color: var(--primary-teal);
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.mega-submenu-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
    max-height: 300px;
    overflow-y: auto;
}

.mega-submenu-dropdown.level-3 {
    min-width: 180px;
    padding: 12px;
}

.mega-menu-item.has-dropdown:hover .mega-submenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(15px);
}

/* Nested dropdown hover for 3+ levels */
.mega-submenu-dropdown li.has-dropdown:hover .mega-submenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(15px);
}

.mega-submenu-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-submenu-dropdown li {
    margin-bottom: 5px;
    position: relative;
}

.mega-submenu-dropdown a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
}

.mega-submenu-dropdown a:hover {
    color: var(--primary-teal);
    background: var(--primary-light);
}

.mega-submenu-dropdown li.has-dropdown > a {
    padding-right: 25px;
}

/* Ensure nested dropdowns position correctly */
.mega-submenu-dropdown li.has-dropdown {
    position: relative;
}

/* Improve hover timing for nested menus */
.mega-submenu-dropdown li.has-dropdown .mega-submenu-dropdown {
    transition-delay: 0.1s;
}

.mega-submenu-dropdown li.has-dropdown:hover .mega-submenu-dropdown {
    transition-delay: 0s;
}

/* Handle positioning to prevent off-screen issues */
.mega-menu-column {
    position: relative;
}

/* Hide scrollbar for dropdown */
.mega-submenu-dropdown::-webkit-scrollbar {
    display: none;
}

.mega-submenu-dropdown {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Login Dropdown */
.login-dropdown {
    position: relative;
}

.login-dropdown .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 15px;
    min-width: 200px;
}

.login-dropdown .dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-dropdown .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-teal) !important;
}

.login-dropdown .dropdown-item {
    color: var(--text-primary) !important;
}

.btn-header {
    background: linear-gradient(
        135deg,
        var(--primary-teal) 0%,
        var(--accent-teal) 100%
    );
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-header:hover {
    background: linear-gradient(
        135deg,
        var(--accent-teal) 0%,
        var(--primary-teal) 100%
    );
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

.btn-header:active,
.btn-header:focus {
    color: white !important;
}

.dropdown-toggle::after {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: var(--primary-light);
    color: var(--primary-teal);
}

.mobile-toggle.active {
    color: var(--primary-teal);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 25px 20px 30px;
    position: relative;
}

.mobile-menu-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-teal));
    border-radius: 2px;
    margin-top: 8px;
}

.mobile-menu-item {
    margin-bottom: 8px;
    opacity: 0;
    animation: slideInFromLeft 0.4s ease forwards;
}

.mobile-menu-item:nth-child(1) {
    animation-delay: 0.1s;
}
.mobile-menu-item:nth-child(2) {
    animation-delay: 0.15s;
}
.mobile-menu-item:nth-child(3) {
    animation-delay: 0.2s;
}
.mobile-menu-item:nth-child(4) {
    animation-delay: 0.25s;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.mobile-menu-item > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(37, 144, 156, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.mobile-menu-item > a:hover::before {
    left: 100%;
}

.mobile-menu-item > a:hover {
    background: rgba(37, 144, 156, 0.08);
    color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 144, 156, 0.15);
    border-color: rgba(37, 144, 156, 0.2);
}

.mobile-menu-item > a:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.mobile-submenu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 8px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-submenu.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 12px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.mobile-submenu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(
        180deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    transition: width 0.3s ease;
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-submenu a:hover {
    background: rgba(37, 144, 156, 0.05);
    color: var(--primary-teal);
    padding-left: 30px;
}

.mobile-submenu a:hover::before {
    width: 3px;
}

/* Mobile Category Items (N-Level) */
.mobile-category-item {
    position: relative;
}

.mobile-category-submenu {
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-category-submenu.active {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-category-item a {
    transition: all 0.3s ease;
    position: relative;
}

.mobile-category-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(
        180deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    transition: width 0.3s ease;
}

.mobile-category-item a:hover::before {
    width: 3px;
}

.mobile-category-item a:hover {
    background: rgba(37, 144, 156, 0.05);
    color: var(--primary-teal) !important;
}

.mobile-category-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Different background shades for different levels */
.mobile-category-item[data-level="0"] .mobile-category-submenu {
    background: rgba(248, 250, 252, 0.9);
}

.mobile-category-item[data-level="1"] .mobile-category-submenu {
    background: rgba(241, 245, 249, 0.9);
}

.mobile-category-item[data-level="2"] .mobile-category-submenu {
    background: rgba(236, 242, 248, 0.9);
}

.mobile-category-item[data-level="3"] .mobile-category-submenu {
    background: rgba(230, 237, 245, 0.9);
}

.mobile-login-section {
    margin-top: 25px;
    padding: 25px 20px;
    background: linear-gradient(
        135deg,
        rgba(37, 144, 156, 0.08) 0%,
        rgba(30, 122, 132, 0.05) 100%
    );
    border-radius: 20px;
    border: 1px solid rgba(37, 144, 156, 0.1);
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 0.4s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.mobile-login-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(37, 144, 156, 0.05) 0%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.mobile-login-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-primary);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-login-title::before {
    content: "";
    width: 6px;
    height: 20px;
    background: linear-gradient(
        180deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    border-radius: 3px;
}

.mobile-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.mobile-login-btn:hover::before {
    left: 100%;
}

.mobile-login-btn i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    color: white;
    border-radius: 6px;
    font-size: 12px;
}

.mobile-login-btn:hover {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 144, 156, 0.25);
}

.mobile-login-btn:hover i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.mobile-login-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.mobile-chevron {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 144, 156, 0.1);
    border-radius: 50%;
    color: var(--primary-teal);
}

.mobile-chevron.active {
    transform: rotate(180deg);
    background: var(--primary-teal);
    color: white;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    backdrop-filter: blur(2px);
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Banner Section */
.banner-section {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-slide {
    width: 100%;
    height: 0;
    padding-bottom: 36.46%; /* 700/1920 * 100 = 36.46% for 1920x700 aspect ratio */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    position: relative;
}

/* Ensure Swiper slides maintain aspect ratio */
.bannerSwiper .swiper-slide {
    width: 100%;
    height: 0;
    padding-bottom: 36.46%; /* 700/1920 * 100 = 36.46% for 1920x700 aspect ratio */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .banner-slide,
    .bannerSwiper .swiper-slide {
        padding-bottom: 40%; /* Slightly taller on medium screens */
    }
}

@media (max-width: 768px) {
    .banner-slide,
    .bannerSwiper .swiper-slide {
        padding-bottom: 45%; /* Even taller on tablets */
    }
}

@media (max-width: 480px) {
    .banner-slide,
    .bannerSwiper .swiper-slide {
        padding-bottom: 50%; /* Taller on mobile for better visibility */
    }
}

/* Banner Slider Pagination Styling */
.bannerSwiper .swiper-pagination {
    bottom: 20px;
}

.bannerSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 6px;
}

.bannerSwiper .swiper-pagination-bullet-active {
    background: var(--primary-teal);
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(37, 144, 156, 0.3);
}

.bannerSwiper .swiper-pagination-bullet:hover {
    background: var(--primary-teal);
    opacity: 0.8;
    transform: scale(1.1);
}

/* Mobile optimizations for banner slider */
@media (max-width: 768px) {
    .bannerSwiper .swiper-pagination {
        bottom: 15px;
    }

    .bannerSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .bannerSwiper .swiper-pagination-bullet-active {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .bannerSwiper .swiper-pagination {
        bottom: 10px;
    }

    .bannerSwiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    .bannerSwiper .swiper-pagination-bullet-active {
        transform: scale(1.1);
        box-shadow: 0 1px 4px rgba(37, 144, 156, 0.3);
    }
}

/* Ensure banner section is properly positioned on mobile */
@media (max-width: 480px) {
    .banner-section {
        margin-top: 70px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    margin-top: 0;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* About CTA Button Styles */
.about-cta {
    margin-top: 25px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more span {
    position: relative;
    z-index: 1;
}

.btn-read-more i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Statistics Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        #1a2e42 50%,
        var(--primary-dark) 100%
    );
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2325909c' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
        repeat;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-teal);
    box-shadow: 0 6px 15px rgba(37, 144, 156, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(
        135deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-icon i {
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-teal), #40c4d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number::after {
    content: "+";
    position: absolute;
    right: -20px;
    top: 0;
    font-size: 2rem;
    color: var(--primary-teal);
    opacity: 0.7;
}

.stat-label {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    opacity: 0.8;
}

@keyframes statSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title-content {
    position: relative;
}

.section-title-text {
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
}

.feature-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-teal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(
        135deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-teal);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .feature-card h4 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--bg-primary) 0%,
        #f1f5f9 50%,
        var(--bg-primary) 100%
    );
    position: relative;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2325909c' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4 4-1.8 4-4zm10 0c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4 4-1.8 4-4z'/%3E%3C/g%3E%3C/svg%3E")
        repeat;
}

.testimonials-navigation {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.testimonial-btn-prev,
.testimonial-btn-next {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(37, 144, 156, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-btn-prev:hover,
.testimonial-btn-next:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 5px 15px rgba(37, 144, 156, 0.25);
}

.testimonials-section .section-title-content {
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-teal);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-stars i {
    transition: transform 0.3s ease;
}

.testimonial-stars i:hover {
    transform: scale(1.1);
}

.testimonial-quote {
    position: relative;
    margin: 20px 0 25px 0;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-teal);
    opacity: 0.6;
}

.quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 15px 0;
    position: relative;
    z-index: 2;
}

.testimonial-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.testimonial-position {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.testimonial-organization {
    font-size: 0.95rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

.testimonials-pagination {
    margin-top: 40px !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-teal);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-navigation {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
        order: 2;
    }

    .testimonials-section .section-title-content {
        flex-direction: column;
    }

    .testimonial-btn-prev,
    .testimonial-btn-next {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .testimonial-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .testimonial-stars {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 1.1rem;
    }

    .testimonial-position {
        font-size: 0.9rem;
    }

    .testimonial-organization {
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--bg-secondary) 0%,
        #f1f5f9 50%,
        var(--bg-secondary) 100%
    );
    position: relative;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2325909c' fill-opacity='0.02'%3E%3Cpath d='M25 25c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4 4-1.8 4-4zm0 15c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4 4-1.8 4-4zm15-15c0-2.2-1.8-4-4-4s-4 1.8-4 4 1.8 4 4 4 4-1.8 4-4z'/%3E%3C/g%3E%3C/svg%3E")
        repeat;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.faq-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item-wrapper:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 6px 30px rgba(37, 144, 156, 0.1);
}

.faq-question {
    padding: 25px 30px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-question-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(
        135deg,
        var(--primary-teal),
        var(--accent-teal)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question-text {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-toggle-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-icon i {
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-question-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 144, 156, 0.3);
}

.faq-question:hover .faq-toggle-icon {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8fafc;
}

.faq-answer-content {
    padding: 20px 30px 25px 30px;
}

.faq-answer-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item.active .faq-toggle-icon {
    background: var(--primary-teal);
    color: white;
    transform: rotate(45deg);
}

.faq-item.active .faq-question-icon {
    background: linear-gradient(135deg, #059669, #047857);
}

.faq-contact-card {
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary-teal) 100%
    );
    border-radius: 25px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(18, 45, 74, 0.2);
}

.faq-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E")
        repeat;
}

.faq-contact-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.faq-contact-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.faq-contact-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-faq-contact,
.btn-faq-email {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-faq-contact {
    background: white;
    color: var(--primary-dark);
    border: 2px solid white;
}

.btn-faq-contact:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-faq-email {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-faq-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

.faq-contact-illustration {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question-content {
        gap: 12px;
    }

    .faq-question-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-toggle-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .faq-answer-content {
        padding: 15px 25px 20px 25px;
    }

    .faq-answer-content p {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        max-height: 120px;
    }

    .faq-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }

    .faq-contact-content h4 {
        font-size: 1.5rem;
    }

    .faq-contact-content p {
        font-size: 1rem;
    }

    .faq-contact-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-faq-contact,
    .btn-faq-email {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .faq-contact-illustration {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-teal);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-teal);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .mega-menu {
        min-width: 100vw;
        left: 0;
        transform: none;
        border-radius: 0;
    }

    /* Hide dropdown arrows and submenus on mobile */
    .mega-submenu-arrow {
        display: none;
    }

    .mega-submenu-dropdown {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-cta {
        margin-top: 20px;
        text-align: center;
    }
    
    .btn-read-more {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .custom-navigation {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .mobile-menu-content {
        padding: 20px 15px 25px;
    }

    .mobile-menu-item > a {
        padding: 16px 18px;
        font-size: 15px;
    }

    .mobile-login-section {
        margin-top: 20px;
        padding: 20px 18px;
    }

    .mobile-login-btn {
        padding: 14px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 70px;
    }

    .mobile-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }

    .mobile-menu-backdrop {
        top: 70px;
    }

    .banner-section {
        margin-top: 70px;
    }

    .logo-section img {
        height: 60px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .mobile-menu-content {
        padding: 15px 12px 20px;
    }

    .mobile-menu-item > a {
        padding: 14px 16px;
        font-size: 14px;
    }

    .mobile-login-section {
        padding: 18px 16px;
    }

    .mobile-login-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Terms and Privacy Pages Styles */
.terms_page {
    /* Page Header Styles */
    .page-header-section {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .page-header-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

    .page-header-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 30px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }

    .breadcrumb-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 8px 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .breadcrumb-link:hover {
        color: white;
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .breadcrumb-separator {
        color: rgba(255, 255, 255, 0.6);
        font-size: 12px;
    }

    .breadcrumb-current {
        color: white;
        font-weight: 600;
    }

    .page-title-section {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-subtitle {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Page Content Styles */
    .page-content-section {
        padding: 80px 0;
        background: var(--bg-secondary);
    }

    .content-wrapper {
        max-width: 1000px;
        margin: 0 auto;
    }

    .content-card {
        background: white;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .content-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-teal), var(--primary-dark));
    }

    .content-body {
        padding: 60px;
    }

    /* Section Styles */
    .terms-section,
    .privacy-section {
        margin-bottom: 50px;
    }

    .terms-section:last-child,
    .privacy-section:last-child {
        margin-bottom: 0;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-teal), var(--primary-dark));
        border-radius: 2px;
    }

    .subsection-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 30px 0 15px;
        position: relative;
        padding-left: 20px;
    }

    .subsection-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background: var(--primary-teal);
        border-radius: 2px;
    }

    /* List Styles */
    .terms-list,
    .privacy-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .terms-list li,
    .privacy-list li {
        position: relative;
        padding: 12px 0 12px 30px;
        line-height: 1.6;
        color: var(--text-secondary);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .terms-list li:last-child,
    .privacy-list li:last-child {
        border-bottom: none;
    }

    .terms-list li::before,
    .privacy-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18px;
        width: 8px;
        height: 8px;
        background: var(--primary-teal);
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .terms-list li strong,
    .privacy-list li strong {
        color: var(--text-primary);
        font-weight: 600;
    }

    /* Contact Info Styles */
    .contact-info {
        background: var(--bg-secondary);
        border-radius: 15px;
        padding: 30px;
        margin: 20px 0;
        border: 1px solid var(--border-color);
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 0;
        color: var(--text-secondary);
    }

    .contact-item:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }

    .contact-item i {
        width: 20px;
        color: var(--primary-teal);
        font-size: 16px;
    }

    .contact-item span {
        flex: 1;
        line-height: 1.5;
    }

    .contact-item strong {
        color: var(--text-primary);
        font-weight: 600;
    }

    /* Footer Styles */
    .terms-footer,
    .privacy-footer {
        margin-top: 50px;
        padding-top: 30px;
        border-top: 2px solid var(--border-color);
        text-align: center;
    }

    .last-updated {
        color: var(--text-secondary);
        font-size: 14px;
        margin: 0;
    }

    .last-updated strong {
        color: var(--text-primary);
        font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-header-section {
            padding: 100px 0 60px;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .page-subtitle {
            font-size: 1.1rem;
        }
        
        .breadcrumb-nav {
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
        }
        
        .breadcrumb-link {
            padding: 6px 12px;
            font-size: 13px;
        }
        
        .page-content-section {
            padding: 60px 0;
        }
        
        .content-body {
            padding: 40px 30px;
        }
        
        .section-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }
        
        .subsection-title {
            font-size: 1.2rem;
            margin: 25px 0 12px;
        }
        
        .terms-list li,
        .privacy-list li {
            padding: 10px 0 10px 25px;
        }
        
        .contact-info {
            padding: 20px;
        }
        
        .contact-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            padding: 15px 0;
        }
        
        .contact-item i {
            width: auto;
        }
    }

    @media (max-width: 480px) {
        .page-header-section {
            padding: 80px 0 50px;
        }
        
        .page-title {
            font-size: 2rem;
        }
        
        .page-subtitle {
            font-size: 1rem;
        }
        
        .content-body {
            padding: 30px 20px;
        }
        
        .section-title {
            font-size: 1.4rem;
        }
        
        .subsection-title {
            font-size: 1.1rem;
        }
        
        .contact-info {
            padding: 15px;
        }
    }
}

/* About Page Styles */
.about-page {
    /* Page Header Styles */
    .page-header-section {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
        padding: 100px 0 100px;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
    }

    .page-header-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

    .page-header-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }

    .breadcrumb-link {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 6px 12px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .breadcrumb-link:hover {
        color: white;
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .breadcrumb-separator {
        color: rgba(255, 255, 255, 0.6);
        font-size: 12px;
    }

    .breadcrumb-current {
        color: white;
        font-weight: 600;
    }

    .page-title-section {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-title {
        font-size: 3rem;
        font-weight: 700;
        color: white;
        margin-bottom: 15px;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Page Content Styles */
    .page-content-section {
        padding: 10px 0;
        background: var(--bg-secondary);
    }

    .content-wrapper {
        
        margin: 0 auto;
    }

    .content-card {
        background: white;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
        margin-bottom: 50px;
    }

    .content-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-teal), var(--primary-dark));
    }

    .content-body {
        padding: 40px;
    }

    /* About Section Styles */
    .about-page-section {
        margin-bottom: 40px;
        padding: 40px;
    }

    .about-page-section:last-child {
        margin-bottom: 0;
    }

    .about-page-section p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-secondary);
        margin-bottom: 15px;
    }

    .about-page-section p:last-child {
        margin-bottom: 0;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-teal), var(--primary-dark));
        border-radius: 2px;
    }

    /* Features Grid Styles */
    .features-grid {
        display: grid;
        gap: 20px;
        margin-top: 25px;
    }

    .feature-item {
        display: flex;
        gap: 20px;
        padding: 25px;
        background: var(--bg-secondary);
        border-radius: 12px;
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary-teal), var(--primary-dark));
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-teal);
    }

    .feature-item:hover::before {
        width: 6px;
    }

    .feature-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, var(--primary-teal), var(--primary-dark));
        color: white;
        font-size: 1.3rem;
        font-weight: 700;
        border-radius: 50%;
        flex-shrink: 0;
        box-shadow: var(--shadow-md);
    }

    .feature-content {
        flex: 1;
    }

    .feature-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--primary-dark);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .feature-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-secondary);
        margin: 0;
    }

    /* Mission and Vision Styles */
    .mission-content,
    .vision-content {
        background: linear-gradient(135deg, rgba(37, 144, 156, 0.05), rgba(18, 45, 74, 0.05));
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid var(--primary-teal);
        margin-top: 15px;
    }

    .mission-content p,
    .vision-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-primary);
        margin-bottom: 12px;
        font-weight: 500;
    }

    .mission-content p:last-child,
    .vision-content p:last-child {
        margin-bottom: 0;
    }

    /* Partners Styles */
    .partners-list {
        margin: 25px 0;
    }

    .partner-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: white;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }

    .partner-item:last-child {
        margin-bottom: 0;
    }

    .partner-item:hover {
        transform: translateX(8px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-teal);
    }

    .partner-item i {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-teal), var(--primary-dark));
        color: white;
        border-radius: 50%;
        font-size: 13px;
        flex-shrink: 0;
    }

    .partner-item span {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        line-height: 1.4;
    }

    .closing-statement {
        background: var(--primary-light);
        padding: 20px;
        border-radius: 10px;
        margin-top: 25px;
        border: 1px solid rgba(37, 144, 156, 0.2);
    }

    .closing-statement p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--primary-dark);
        font-weight: 500;
        margin: 0;
        text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-header-section {
            padding: 100px 0;
            margin-top: 60px;
        }
        
        .page-title {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        
        .page-subtitle {
            font-size: 1rem;
        }
        
        .breadcrumb-nav {
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 20px;
        }
        
        .breadcrumb-link {
            padding: 5px 10px;
            font-size: 12px;
        }
        
        .page-content-section {
            padding: 40px 0;
        }
        
        .content-body {
            padding: 30px 25px;
        }
        
        .section-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
        }
        
        .about-page-section {
            margin-bottom: 35px;
        }
        
        .about-page-section p {
            font-size: 1rem;
        }
        
        .feature-item {
            flex-direction: column;
            gap: 15px;
            padding: 20px;
        }
        
        .feature-number {
            width: 35px;
            height: 35px;
            font-size: 1.1rem;
        }
        
        .feature-title {
            font-size: 1.1rem;
        }
        
        .mission-content,
        .vision-content {
            padding: 20px;
        }
        
        .partner-item {
            padding: 12px;
        }
        
        .partner-item span {
            font-size: 0.95rem;
        }
        
        .closing-statement {
            padding: 15px;
        }
        
        .closing-statement p {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .page-header-section {
            padding: 80px 0 25px;
            margin-top: 50px;
        }
        
        .page-title {
            font-size: 1.8rem;
        }
        
        .page-subtitle {
            font-size: 0.9rem;
        }
        
        .content-body {
            padding: 25px 20px;
        }
        
        .section-title {
            font-size: 1.4rem;
        }
        
        .feature-item {
            padding: 15px;
        }
        
        .feature-number {
            width: 30px;
            height: 30px;
            font-size: 0.9rem;
        }
        
        .feature-title {
            font-size: 1rem;
        }
        
        .mission-content,
        .vision-content {
            padding: 15px;
        }
        
        .partner-item {
            padding: 10px;
        }
        
        .partner-item i {
            width: 22px;
            height: 22px;
            font-size: 11px;
        }
        
        .closing-statement {
            padding: 12px;
        }
    }
}
