:root {
    /* Colors */
    --primary-blue: #024C80;
    --light-blue: #116FB8;
    --dark-blue: #0E2D52;
    --accent-purple: #8B5CF6;
    --accent-blue-gradient-start: #8B5CF6;
    --accent-blue-gradient-end: #3B82F6;
    --text-dark: #1E1E1E;
    --text-light: #FFFFFF;
    --text-gray: #4B4B4B;
    --bg-light: #F3F4F6;
    --bg-white: #FFFFFF;
    --border-color: #E1E1E1;

    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-oxanium: 'Oxanium', sans-serif;
}

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

body {
    font-family: var(--font-inter);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.5;
    background: url('../../media/Backgrounds/background.png') no-repeat center center;
    background-size: cover;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background: rgba(2, 76, 128, 0.9);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 18px;
    padding-right: 0 !important;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo {
    height: 22px;
    width: auto;
    flex-shrink: 0;
}

.partner-logo {
    height: 22px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.98;
}

.logo-partners {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.partner-logo-aspi {
    height: 20px;
}

.partner-logo-fintech {
    height: 22px;
}

.partner-logo-apuvindo {
    height: 21px;
}

.partner-logo-lppi {
    height: 22px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 28px;
    margin: 0;
    min-width: 0;
}

.nav-list {
    display: flex;
    gap: 0;
}

.nav-link {
    color: var(--text-light);
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 25.6px;
    transition: color 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    padding: 10px 0 10px 25px;
}

.nav-link:hover {
    color: var(--light-blue);
}

.auth-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    margin-left: 0;
}

.btn {
    padding: 8px 25px;
    border-radius: 18px;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-gradient {
    background: radial-gradient(130% 160% at 80% 75%, var(--accent-blue-gradient-start) 0%, #636FF6 50%, var(--accent-blue-gradient-end) 100%);
    color: var(--text-light);
    border: 1px solid #EBF4FF;
    box-shadow: 0px 0px 12px rgba(139, 92, 246, 0.6);
}

.btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .logo-group {
        gap: 6px;
    }

    .logo {
        height: 18px;
    }

    .partner-logo {
        height: 15px;
    }

    .partner-logo-lppi {
        height: 15px;
    }

    .logo-partners {
        display: flex;
        gap: 6px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(2, 76, 128, 0.98);
        padding: 20px;
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .nav-link {
        font-size: 14px;
        line-height: 22px;
        padding: 8px 0;
    }

    .auth-buttons {
        gap: 10px;
        flex-shrink: 0;
        display: flex;
        order: 10;
        margin: 25px 0 0 0;
        width: 100%;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
        line-height: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 16px;
    }

    .partner-logo {
        height: 12px;
    }

    .partner-logo-lppi {
        height: 12px;
    }

    .logo-group {
        gap: 5px;
    }

    .nav-link {
        font-size: 13px;
    }

    .auth-buttons {
        gap: 8px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 11px;
        line-height: 18px;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
    z-index: 1001;
    margin-left: auto;
}

.mobile-menu-btn:hover svg {
    color: var(--light-blue);
}

.mobile-menu-btn:active {
    transform: scale(0.9);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        height: 100vh;
        height: 100svh;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: unset;
        height: auto;
        padding-top: 0;
        display: block;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: unset;
        height: auto;
        padding-top: 0;
        overflow: visible;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

@media (max-width: 768px) {
    .hero-bg {
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        width: 100%;
        background-color: #277fc3;
    }

    .hero-bg img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: fill;
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-bg {
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        background-color: #277fc3;
    }

    .hero-bg img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: fill;
        object-position: center center;
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 50%, #277fc3 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-bg::after {
        background: linear-gradient(to bottom, transparent 20%, #277fc3 100%);
    }
}

/* Agenda Section */
.agenda {
    padding: 40px 0 0 0;
    color: #fff;
    background: linear-gradient(to bottom, #277fc3 45%, transparent 100%);
}

.agenda-grid {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.agenda-card-item {
    background: rgba(197, 119, 198, 0.5);
    border: 7px solid #8F3390;
    border-radius: 30px;
    box-shadow: 0 4px 50px rgba(252, 122, 253, 0.65);
    padding: 40px 50px;
    flex: 1;
    min-width: 0;
}

.agenda-card-head {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

@media (max-width: 992px) {
    .agenda {
        padding-top: 30px;
    }

    .agenda-grid {
        gap: 20px;
    }

    .agenda-card-item {
        padding: 28px 24px;
    }
}

@media (max-width: 768px) {
    .agenda {
        padding-top: 24px;
    }

    .agenda-grid {
        flex-direction: column;
        gap: 16px;
    }

    .agenda-card-head {
        gap: 16px;
        align-items: flex-start;
    }

    .agenda-card-item {
        padding: 20px 16px;
        border-width: 4px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .agenda {
        padding-top: 18px;
    }

    .agenda-card-head {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .agenda-item {
        width: 100%;
    }

    .agenda-card-icon {
        margin-top: 0;
        justify-content: flex-start;
    }

    .agenda-card-item {
        padding: 16px 14px;
    }
}

.agenda-card-icon {
    color: #8F3390;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.agenda-card-icon svg {
    width: 80px;
    height: 80px;
    stroke-width: 1.8;
}

@media (max-width: 768px) {
    .agenda-card-icon svg {
        width: 58px;
        height: 58px;
    }
}

.agenda-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.agenda-label {
    font-family: var(--font-oxanium);
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.1;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.agenda-date {
    font-family: var(--font-poppins);
    font-size: 15px;
    line-height: 1.4;
    color: white;
    font-weight: 700;
}

.agenda-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.35;
    color: #E9E9E9;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 1);
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .agenda .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .agenda-label {
        font-size: 22px;
        line-height: 1.15;
    }

    .agenda-date {
        font-size: 14px;
        line-height: 1.35;
    }

    .agenda-desc {
        font-size: 14px;
        line-height: 1.35;
        border-radius: 16px;
        width: 100%;
    }
}

@media (max-width: 390px) {
    .agenda .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .agenda-card-head {
        gap: 10px;
    }

    .agenda-card-icon svg {
        width: 46px;
        height: 46px;
    }

    .agenda-card-item {
        padding: 14px 12px;
    }

    .agenda-label {
        font-size: 20px;
    }

    .agenda-date,
    .agenda-desc {
        font-size: 13px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    color: white;
}

.about-card {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 30px;
    padding: 40px;
    flex-shrink: 0;
    box-shadow: 0 4px 40px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(7.5px);
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(53, 119, 199, 0.7) 0%, rgba(38, 96, 166, 0.85) 50%, rgba(23, 73, 133, 1) 100%);
    z-index: 0;
}

.about-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.about-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about .section-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-oxanium);
    width: 100%;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    line-height: 33.6px;
    margin-bottom: 0;
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.about-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: flex-start;
    background: rgba(14, 45, 82, 0.4);
    border-radius: 20px;
    padding: 20px;
}

.about-text {
    width: 100%;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text p {
    font-size: 16px;
    line-height: 25.6px;
    color: white;
    text-align: justify;
    font-weight: 600;
}

.about-text p + p {
    margin-top: 22px;
}

.about-content ul {
    list-style: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.about-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-top: 0;
    padding-top: 0.6px;
    text-align: right;
    font-weight: 700;
    font-size: 20px;
    line-height: 25.6px;
    color: #E0E6FF;
}

.about-footer h3 {
    width: 550px;
    max-width: 100%;
    margin: 0;
    font-family: var(--font-inter);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25.6px;
}

@media (max-width: 992px) {
    .about {
        padding: 72px 0;
    }

    .about-card {
        padding: 32px;
    }

    .about .section-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .about-content {
        flex-direction: column;
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 56px 0;
    }

    .about-card {
        padding: 24px;
        border-radius: 24px;
    }

    .about .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-content {
        font-size: 15px;
        line-height: 1.7;
        padding: 16px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-text p + p {
        margin-top: 16px;
    }

    .about-footer h3 {
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
        text-align: right;
    }
}

/* Problem Statements */
.problems {
    padding: 80px 0;
    color: white;
}

.section-heading {
    font-family: var(--font-oxanium);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    text-shadow: 0 4px 16px rgba(139, 92, 246, 0.5);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.problem-card {
    background: rgba(23, 73, 133, 0.6);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.problem-card h3 {
    font-family: var(--font-oxanium);
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    color: #F3F4F6;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item {
    background-color: #277fc3;
    color: white;
    border-radius: 12px;
}

.problem-header {
    background: #174985;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E0E6FF;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, border-radius 0.3s;
}

.problem-item.active .problem-header {
    border-radius: 12px 12px 0 0;
}

.problem-header:hover {
    background: #116FB8;
}

.problem-header svg {
    transition: transform 0.3s ease;
}

.problem-item.active .problem-header svg {
    transform: rotate(180deg);
}

.problem-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    color: #E0E6FF;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.problem-item.active .problem-body {
    max-height: 500px;
    padding: 15px;
}

.problem-body ol {
    list-style: decimal;
    padding-left: 25px;
    margin: 10px 0;
}

.problem-body ol li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    --timeline-primary: #116FB8;
    --timeline-secondary: #8F3390;
    --timeline-date: #E0E6FF;
    --timeline-surface: rgba(17, 111, 184, 0.14);
    --timeline-line: rgba(224, 230, 255, 0.24);
    --timeline-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);

    padding: 80px 0;
    color: #fff;
}

.timeline-heading {
    text-shadow: 0 4px 16px rgba(143, 51, 144, 0.5);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 12px;
}

.timeline-items {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 40px;
    bottom: 35px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, var(--timeline-line) 12%, var(--timeline-line) 88%, transparent 100%);
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 34px;
}

.timeline-item.left {
    padding-right: 50px;
    text-align: left;
}

.timeline-item.right {
    margin-left: 50%;
    padding-left: 50px;
    text-align: left;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    margin-bottom: 10px;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--timeline-date);
}

.timeline-trigger {
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 16px 24px;
    color: var(--timeline-date);
    cursor: default;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    box-shadow: var(--timeline-shadow);
    transition: filter 0.25s ease;
}

.timeline-item--primary .timeline-trigger {
    background: linear-gradient(145deg, rgba(17, 111, 184, 0.95), rgba(17, 111, 184, 0.8));
}

.timeline-item--secondary .timeline-trigger {
    background: linear-gradient(145deg, rgba(143, 51, 144, 0.95), rgba(143, 51, 144, 0.8));
}

.timeline-trigger:hover {
    filter: brightness(1.04);
}

.timeline-card-title {
    flex: 1;
}

.timeline-trigger svg {
    display: none;
}

.timeline-node {
    position: absolute;
    top: 49px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(224, 230, 255, 0.16);
    border: 1px solid rgba(224, 230, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-item.left .timeline-node {
    right: -18px;
}

.timeline-item.right .timeline-node {
    left: -18px;
}

.timeline-item.right .timeline-dropdown,
.timeline-item.right .timeline-trigger,
.timeline-item.right .timeline-date {
    text-align: left;
}

.timeline-node-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.timeline-dropdown {
    display: none;
}

.timeline-dropdown h1 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--timeline-date);
}

.timeline-dropdown p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .timeline-container {
        padding-left: 8px;
    }

    .timeline-line {
        left: 18px;
        transform: none;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        margin-left: 0;
        padding: 0 0 0 48px;
        text-align: left;
    }

    .timeline-item .timeline-node,
    .timeline-item.left .timeline-node,
    .timeline-item.right .timeline-node {
        left: 0;
        right: auto;
        top: 45px;
    }

    .timeline-trigger,
    .timeline-dropdown {
        padding-left: 16px;
        padding-right: 16px;
    }

    .timeline-item.active .timeline-dropdown {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Prizes Section */
.prizes {
    padding: 80px 0;
    color: white;
}

.prizes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

@media (max-width: 992px) {
    .prizes-content {
        grid-template-columns: 1fr;
    }
}

.prize-main-card {
    background: url('../../media/Backgrounds/remove-text-background-hero.png') no-repeat center left;
    background-size: 300%;
    height: 350px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 40px rgba(255, 255, 255, 0.25);
    position: relative;
}

.prize-text {
    text-align: center;
    font-family: var(--font-oxanium);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.prize-label {
    display: block;
    font-size: 45px;
    font-weight: 700;
    color: white;
}

.prize-amount {
    display: block;
    font-size: 165px;
    font-weight: 800;
    line-height: 1;
    color: white;
}

.benefits-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    background: radial-gradient(circle, #018CC8 0%, #2F629E 100%);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
}

.benefit-card--single {
    background: radial-gradient(circle, #018CC8 0%, #2F629E 100%);
    padding: 30px 40px;
    border-radius: 20px;
    flex: 1;
    display: grid;
    gap: 20px;
    height: 350px;
}

@media (max-width: 768px) {

    .prize-main-card,
    .benefit-card--single {
        height: auto;
        padding: 30px;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

.benefit-item p {
    margin: 0;
    font-size: 20px;
    text-align: left;
}

.benefit-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin: 0;
}

/* FAQ Section */
.faq {
    color: white;
}

.faq-wave {
    margin-top: -1px;
    line-height: 0;
}

.faq-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.faq .container {
    background: #116FB8;
    margin: 0 !important;
    max-width: none;
    padding: 0 100px 80px !important;
}

@media (max-width: 1200px) {
    .faq .container {
        padding: 0 50px 60px !important;
    }
}

@media (max-width: 768px) {
    .faq .container {
        padding: 0 20px 40px !important;
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-title {
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Search Bar */
.search-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    width: 20px;
    height: 20px;
}

#searchInput {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}

#searchInput::placeholder {
    color: #9CA3AF;
}

/* Tabs */
.tabs-container {
    background-color: white;
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: black;
}

.tabs-track {
    display: flex;
    position: relative;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--tab-inactive-text);
    border-radius: 40px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn.active {
    background-color: #8F3390;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* FAQ List Area */
.faq-content-wrapper {
    display: flex;
    gap: 16px;
    height: 500px;
    position: relative;
}

@media (max-width: 768px) {
    .faq-content-wrapper {
        height: auto;
        min-height: 400px;
    }
}

.faq-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    /* Hide default scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.faq-list::-webkit-scrollbar {
    display: none;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #111827;
    font-size: 0.95rem;
    user-select: none;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.toggle-icon {
    width: 20px;
    height: 20px;
    color: #3B82F6;
    background: #EBF5FF;
    border-radius: 50%;
    padding: 2px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .toggle-icon {
    background: #EF4444;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #F3F4F6;
}

.faq-answer p {
    padding: 20px;
    color: black;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Custom Scrollbar Visuals */
.custom-scrollbar-track {
    width: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.custom-scrollbar-thumb {
    width: 100%;
    background-color: #8F3390;
    /* Pink/Purple thumb */
    border-radius: 3px;
    position: absolute;
    top: 0;
    height: 50px;
    /* Dynamic height handled by JS ideally, fixed for now */
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-scrollbar-thumb:hover {
    background-color: #f0f0f0;
}

/* Empty State */
.empty-state {
    text-align: center;
    color: white;
    padding: 40px;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 1.5rem;
    }

    .tabs-track {
        flex-direction: column;
    }

    .tabs-container {
        border-radius: 16px;
    }

    .tab-btn {
        border-radius: 12px;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-content p {
    margin-top: 20px;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.footer-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    margin: auto;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-oxanium);
    font-size: 24px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .prize-amount {
        font-size: 80px;
    }
}
