/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b5bdb;
}

/* Reset and base styles */
:root {
    --primary: #5271FF;
    --secondary: #222222;
    --background: #ffffff;
    --text: #222222;
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    padding-top: 60px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Donors Ticker */
.donors-ticker {
    height: 45px;
    background: linear-gradient(135deg, rgba(82, 113, 255, 0.06) 0%, rgba(37, 99, 235, 0.1) 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(82, 113, 255, 0.08);
    border-bottom: 1px solid rgba(82, 113, 255, 0.08);
    margin-top: 2rem;
}

.donors-ticker-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.donors-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: ticker 30s linear infinite;
}

.donors-ticker-track span {
    display: inline-block;
    padding: 0 2rem;
    color: #2563EB;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.donors-ticker-track span:hover {
    opacity: 1;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.6rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    transform: translateY(-3px);
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
    display: block;
    margin-top: 0.75rem;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a.active {
    color: #2563eb;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: flex-start;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        width: 100%;
        text-align: left;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        margin-left: auto;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease-in-out;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Introduction Section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.intro-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    margin: 0;
    z-index: 2;
}

.intro-section:last-of-type {
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -15px 40px rgba(82, 113, 255, 0.15);
}

.intro-background {
    display: none;
}

.parallax-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    transition: transform 0.3s ease;
}

.dot-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: float 8s infinite;
}

.dot-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -100px;
    animation: float 12s infinite reverse;
}

.dot-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 15%;
    animation: float 10s infinite 2s;
}

.dot-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation: float 6s infinite 1s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

.intro-header {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(82, 113, 255, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.role-section .intro-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

.section-text {
    margin-top: 1.5rem;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-text p {
    margin-bottom: 1.5rem;
}

.section-text .highlight-text {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 3rem;
}

.highlight {
    color: #2563EB;
    font-weight: 700;
}

.highlight-purple {
    color: #2563EB;
    font-weight: 700;
}

.highlight-quote {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 2rem 0;
    line-height: 1.4;
    display: block;
    letter-spacing: -0.02em;
}

.intro-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.intro-image-wide {
    width: 100%;
    margin: 2rem 0;
    padding: 0 2rem;
}

.intro-wide-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(82, 113, 255, 0.15);
    transition: transform 0.3s ease;
}

.intro-wide-image:hover {
    transform: translateY(-10px);
}

.intro-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-text {
    text-align: center;
    width: 100%;
}

.intro-button {
    margin-top: 2rem;
    display: inline-flex;
    min-width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.intro-side-image:hover {
    transform: translateY(-10px);
}

@media (max-width: 991px) {
    .intro-split {
        flex-direction: column;
    }
    
    .intro-image-side {
        width: 100%;
        margin-top: 2rem;
    }
}

.intro-text p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.intro-text p.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-text br + br {
    display: block;
    content: "";
    margin-top: 1.5em;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.intro-text .highlight {
    position: relative;
    display: inline-block;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem auto 0;
    max-width: 1200px;
}

.intro-cards .card-image {
    height: 400px;
}

.intro-cards .card:nth-child(3) .card-image img {
    transform: scale(1.3);
    object-position: center 40%;
    transition: transform 0.3s ease;
}

.intro-cards .card:nth-child(3):hover .card-image img {
    transform: scale(1.4);
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(82, 113, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: scaleIn 0.6s ease-out 1s forwards;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 320px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(82, 113, 255, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.intro-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(82, 113, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    line-height: 1;
    padding-bottom: 4px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.feature-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-button {
    display: block;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.intro-cards .card:first-child .card-button,
.intro-cards .card:last-child .card-button {
    margin-top: 1rem;
}

.card-button:hover {
    transform: translateY(-2px);
    color: #3b5bdb;
}

@media (max-width: 1024px) {
    .intro-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .feature-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        gap: 1rem;
    }

    .gallery-item {
        height: 350px;
        margin-bottom: 1rem;
    }

    .gallery-item img {
        height: 350px;
    }

    .coming-soon-text {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
        color: white;
        font-weight: 800;
    }

    .coming-soon-subtext {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        color: white;
        font-weight: 500;
    }

    .coming-soon-overlay {
        background: rgba(37, 99, 235, 0.9);
        padding: 2rem;
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .donation-content,
    .partners-grid {
        padding: 0 1.5rem;
    }

    .partner-card {
        margin: 1rem;
        padding: 1.5rem;
    }

    .intro-text {
        font-size: 1.05rem;
        padding: 0 1.5rem;
        line-height: 1.7;
        text-align: center;
        letter-spacing: -0.01em;
        max-width: 600px;
        margin: 0 auto;
    }

    .intro-text-content {
        padding: 0;
    }

    .intro-content-wrapper {
        gap: 4rem;
    }

    .intro-text br + br {
        margin-top: 1.5em;
    }

    .intro-text .highlight {
        display: inline;
        background: rgba(37, 99, 235, 0.1);
        padding: 0.2em 0.4em;
        margin: 0 0.1em;
        border-radius: 3px;
    }

    .intro-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .intro-cards .card {
        width: 100%;
        margin: 0;
        transform: none;
    }

    .intro-cards .card-image {
        height: 250px;
    }

    .intro-cards .card:first-child .card-image img {
        object-position: center 40%;
    }

    .feature-card {
        padding: 1.5rem;
        min-width: 100%;
    }

    .intro-badge {
        margin-bottom: 1rem;
    }

    .support-text br {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .custom-cursor, .objectives-cursor {
        display: none !important;
    }

    .quote-text .char {
        pointer-events: none;
        font-style: normal;
    }

    .quote-text .char:nth-child(19),
    .quote-text .char:nth-child(20),
    .quote-text .char:nth-child(21),
    .quote-text .char:nth-child(22),
    .quote-text .char:nth-last-child(7),
    .quote-text .char:nth-last-child(6),
    .quote-text .char:nth-last-child(5),
    .quote-text .char:nth-last-child(4) {
        font-weight: 700;
    }

    .quote-text .char:hover {
        transform: none !important;
        color: inherit !important;
        text-shadow: none !important;
    }

    .objectives-section, .quote-ribbon {
        cursor: auto;
    }

    .quote-ribbon {
    cursor: auto !important;
    white-space: nowrap;
    overflow: hidden;
}

    .intro-cards {
        flex-direction: column;
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }

    .intro-cards .card {
        width: 100%;
        max-width: none;
        margin: 0 0 1.5rem 0;
    }

    .intro-cards .card-image {
        height: 220px;
    }
}

/* Hero section */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .quote-ribbon {
        white-space: normal !important;
        overflow: hidden !important;
        padding: 1rem 1.5rem;
        text-align: center;
    }
    .quote-text {
        font-size: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
        width: 100% !important;
        line-height: 1.6 !important;
    }
    .quote-word {
        display: inline-block;
        white-space: nowrap;
    }
    .mobile-break {
        display: inline;
    }
}

.cta-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero {
    background-image: url('../images/47892eabaa0c7cefcedd2c611d6d2b79.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 0 2rem;
    margin-bottom: -30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    padding: 5.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 160px;
    height: auto;
    margin-bottom: 3rem;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero-logo:hover {
    transform: scale(1);
}

.hero h1 {
    font-size: clamp(0.9rem, 1.8vw, 1.8rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1;
    width: auto;
    white-space: nowrap;
    padding: 0;
    overflow: visible;
    display: inline-block;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-description {
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.hero-description .line {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    display: block;
    margin: 0;
    padding: 0;
}

@media (max-width: 1200px) {
    .hero-description .line {
        font-size: 1.1rem;
        white-space: normal;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .hero-description {
        display: block;
    }
    .hero-description .line {
        font-size: 1rem;
        line-height: 1.8;
        white-space: normal;
        display: inline;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-small {
    padding: 4rem 1rem;
}

.invites-hero {
    padding: 2rem 1rem;
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.9) 0%, rgba(var(--secondary-color-rgb), 0.9) 100%);
}

.invites-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

/* Pro Players Section */
.pro-players-section {
    padding: 8rem 0;
    background: var(--bg-gradient-light);
}

.pro-players-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pro-players-text {
    margin-top: 3rem;
}

.highlight-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.pro-players-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.announcement {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 3rem;
}

/* Role Section */
.role-section {
    padding: 6rem 0;
    background: url('../images/IMTheNext.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    overflow: hidden;
    width: 100%;
}

.role-grid {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    perspective: 2000px;
    padding: 0 1rem;
    flex-wrap: wrap;
    overflow: hidden;
}

.role-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.8),
                inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(5deg);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 340px;
    margin: 0 auto;
}

.role-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(0deg) scale(1.05);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.9),
                inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateZ(30px);
}

.role-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563EB;
    font-weight: 700;
    transform: translateZ(20px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
}

.role-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    max-width: 280px;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.role-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    margin: 1.5rem 0 0;
}

.role-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.75);
    margin: 0;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.role-list li:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.role-card:hover .role-list li {
    border-color: rgba(0, 0, 0, 0.2);
}

/* Other Guests Section */
.other-guests-section {
    padding: 8rem 0;
    background: var(--bg-gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.guests-teaser {
    max-width: 800px;
    margin: 6rem auto 0;
    text-align: center;
}

.teaser-content {
    padding: 2rem;
}


.teaser-text {
    font-size: 1.75rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.teaser-hint {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.7;
    font-style: italic;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.guest-type {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.guest-type:hover {
    transform: translateY(-10px);
}

.guest-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guest-type h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guest-type p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Action Buttons Section */
.action-section {
    padding: 8rem 0;
    background: var(--white);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.action-button.primary {
    background: var(--primary-color);
    color: var(--white);
}

.action-button.secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.action-button.tertiary {
    background: var(--bg-gradient-light);
    color: var(--text-color);
}

.button-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.button-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.action-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .role-grid,
    .guests-grid,
    .action-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pro-players-section,
    .role-section,
    .other-guests-section,
    .action-section {
        padding: 4rem 0;
    }

    .highlight-text {
        font-size: 1.75rem;
    }

    .pro-players-text p {
        font-size: 1.1rem;
    }

    .announcement {
        font-size: 1.25rem;
    }


    .section-subtitle {
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }

    .section-text {
        font-size: 1.15rem;
        padding: 0 1.5rem;
        margin-top: 3rem;
    }

    .section-text .highlight-text {
        font-size: 1.25rem;
        margin-top: 2rem;
    }
}


.section-header {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-header .intro-badge {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.section-header .section-title {
    margin-bottom: 1.5rem;
}

.section-header .section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-top: 1rem;
}

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

.role-card {
    background: rgba(255,255,255,0.98);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #1a1a1a;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.role-card:hover {
    transform: translateY(-10px);
}

.role-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.role-icon {
    font-size: 2rem;
}

/* Form Text Helper */
.form-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.25rem;
    display: block;
}

/* File Upload Styling */
input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="file"]:hover {
    border-color: #2563eb;
    background-color: #f1f5f9;
}

input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    background-color: #2563eb;
    color: white;
    font-weight: 500;
    margin-right: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background-color: #1d4ed8;
}

/* Project List */
.project-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.project-content {
    margin-bottom: 2rem;
    text-align: center;
}

.project-content p, .project-content ul {
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    padding: 0;
    margin-bottom: 0.3rem;
}

.project-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.project-list li:last-child {
    margin-bottom: 0;
}

.role-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.role-features li {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color-light);
}

/* Join Section */
.join-section {
    padding: 8rem 0;
    background: var(--white);
}

.join-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.join-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.join-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.join-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.join-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-color);
    font-size: 0.95rem;
}

.visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.join-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.visual-wrapper:hover .join-image {
    transform: scale(1.05);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-arrow {
    margin-left: 0.5rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

@media (max-width: 480px) {
    .message-content::before,
    .message-content::after {
        display: none;
    }

    .message-content {
        padding: 2rem 1rem;
    }

    .message-content h2 {
        font-size: 1.75rem;
    }

    .president-message p {
        font-size: 1rem;
        padding: 0;
    }

    .president-message p:has(span.highlight) {
        font-size: 1.15rem;
    }

    .signature {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .project-content {
        padding: 0;
    }

    .project-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .project-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .project-list {
        padding: 0;
        margin: 1.5rem 0;
    }

    .project-list li {
        font-size: 0.95rem;
        padding: 0;
        margin-bottom: 0.75rem;
        text-align: center;
        justify-content: center;
        max-width: 100%;
        gap: 0.5rem;
    }

    .project-list {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .coming-soon-grid,
    .role-grid,
    .join-wrapper,
    .project-grid,
    .press-grid {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .project-content {
        padding: 0 1rem;
    }

    .project-content h2 {
        font-size: 1.75rem;
    }

    .project-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .project-list {
        padding: 0 1rem;
    }

    .project-list li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        text-align: left;
        justify-content: flex-start;
    }

    .project-grid {
        gap: 2rem;
        padding: 0;
    }

    .project-content p {
        padding: 0;
    }

    .container {
        padding: 0 1rem;
    }

    .message-content {
        padding: 3rem 1rem;
    }

    .message-content::before,
    .message-content::after {
        font-size: 6rem;
    }

    .message-content::before {
        top: 2rem;
        left: -1rem;
    }

    .message-content::after {
        bottom: 2rem;
        right: -1rem;
    }

    .message-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .president-message,
    .president-message p,
    .president-message p:has(span.highlight) {
        font-size: 1.1rem;
    }

    .president-message p {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .signature {
        margin-top: 3rem;
        padding: 0 1rem;
    }
}

.hero-video {
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.teaser-video {
    width: 100%;
    display: block;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Placeholder styles */
::placeholder {
    font-family: 'Inter', sans-serif;
}

:-ms-input-placeholder {
    font-family: 'Inter', sans-serif;
}

::-ms-input-placeholder {
    font-family: 'Inter', sans-serif;
}

/* Press Section */
.press-section {
    padding: 6rem 0;
    background: url('../images/IMTheNext.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.press-section .section-header .intro-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.press-section .section-header .section-title,
.press-section .section-header .section-title .highlight {
    color: white;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    overflow-x: hidden;
    width: 100%;
    padding: 0 1rem;
}

.press-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(82, 113, 255, 0.15);
}

.press-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.press-card-icon .icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.press-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.press-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.resource-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(82, 113, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-card:hover {
    background: rgba(82, 113, 255, 0.1);
    transform: translateX(5px);
}

.resource-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.resource-content h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.resource-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Media Coverage */
.coverage-coming-soon {
    text-align: center;
    padding: 2rem;
    background: rgba(82, 113, 255, 0.05);
    border-radius: 16px;
}

.coverage-coming-soon p {
    margin-bottom: 1.5rem;
}

.coverage-animation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.coverage-animation .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: bounce 1.4s infinite;
}

.coverage-animation .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.coverage-animation .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .press-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .press-card {
        padding: 2rem;
    }

    .press-section {
        padding: 4rem 0;
    }
}

/* Parent Info Styles */
#parent-info {
    background: rgba(82, 113, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
}

#parent-info h3 {
    font-size: 1.1rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.form-notice {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.15rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-white {
    background-color: white;
    color: #2563eb;
}

.btn-white:hover {
    background-color: #f8fafc;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #3b5bdb 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(82, 113, 255, 0.25);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b5bdb 0%, var(--primary) 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(82, 113, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #333333;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item .coming-soon-overlay {
    opacity: 1;
}

.coming-soon-text {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
    padding: 0 1rem;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
}

.coming-soon-subtext {
    font-size: 1rem;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    padding: 0 1.5rem;
    transform: translateY(0);
    transition: all 0.3s ease 0.1s;
}

.gallery-item .coming-soon-text,
.gallery-item .coming-soon-subtext {
    opacity: 1;
    transform: translateY(0);
}

/* Sections */
.section {
    padding: 3rem 0;
    overflow-x: hidden;
    width: 100%;
}

.section.bg-light {
    padding: 3rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Forms Section Styles */
.forms-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 4rem 2rem;
}

.forms-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: rgba(82, 113, 255, 0.1);
    color: #2563eb;
    font-weight: 500;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(82, 113, 255, 0.1);
}

.tab-btn:hover {
    background: rgba(82, 113, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 113, 255, 0.15);
}

.tab-btn.active {
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 20px rgba(82, 113, 255, 0.25);
}

.form-container {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(82, 113, 255, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(82, 113, 255, 0.1);
}

.form-container.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.form-container h2 {
    font-size: 2rem;
    color: #1e293b;
    margin: 2rem 0;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #64748b;
    margin: 3rem auto 4rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    color: #1e293b;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.participation-form .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .forms-tabs {
        flex-direction: column;
        gap: 0.75rem;
    }

    .tab-btn {
        width: 100%;
        padding: 1rem;
    }

    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.role-section .section-title,
.role-section .section-title .highlight,
.role-section .section-subtitle {
    color: white;
}

.role-section .highlight-purple {
    color: white;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-note p {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

.bg-light {
    background-color: #f8fafc;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.project-grid.reverse {
    direction: rtl;
}

.project-grid.reverse .project-content {
    direction: ltr;
}

.project-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    padding-top: 2rem;
}

.project-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    padding: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Quote Styles */
.quote-container {
    position: relative;
    padding: 3rem 2rem 1rem;
    overflow: hidden;
    width: 100%;
}

.quote-container::before,
.quote-container::after {
    content: '“';
    position: absolute;
    font-size: 12rem;
    color: rgba(37, 99, 235, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    animation: fadeInQuotes 1s ease-out forwards;
    z-index: 1;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
    .quote-container::before,
    .quote-container::after {
        font-size: 6rem;
    }
}

.quote-container::before {
    top: -1rem;
    left: 0.5rem;
}

@media (max-width: 768px) {
    .quote-container::before {
        top: -0.5rem;
        left: 0.5rem;
    }
}

.quote-container::after {
    content: '”';
    bottom: -1rem;
    right: 0.5rem;
}

@media (max-width: 768px) {
    .quote-container::after {
        bottom: -3rem;
        right: 0.5rem;
    }
}

@keyframes fadeInQuotes {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Message Section */
.message-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
}

.message-content::before,
.message-content::after {
    content: '\201C';
    position: absolute;
    font-size: 8rem;
    color: rgba(37, 99, 235, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    transition: color 0.3s ease;
}

.message-content:hover::before,
.message-content:hover::after {
    color: rgba(37, 99, 235, 0.15);
}

.message-content::before {
    top: 2rem;
    left: -2rem;
}

.message-content::after {
    content: '\201D';
    bottom: 2rem;
    right: -2rem;
}

.message-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1e293b;
}

.president-message {
    margin-bottom: 2rem;
    text-align: center;
}

.president-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    margin-bottom: 1.5rem;
}

.president-message .highlight {
    display: inline;
}

@media (max-width: 768px) {
    .president-message {
        padding: 0 1rem;
    }
    
    .president-message p {
        margin-bottom: 2rem;
        text-align: left;
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .president-message p:last-child {
        margin-bottom: 1rem;
    }
}

.president-message .highlight {
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.president-message .highlight:hover {
    color: #1e40af;
}

.president-message p {
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    display: block;
}

.president-message p:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.president-message p:has(span.highlight) {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 500;
    margin: 0.3rem auto;
}

.signature {
    margin-top: 1.5rem;
    text-align: right;
    font-style: italic;
    color: #2563EB;
    font-weight: 500;
    position: relative;
    padding-top: 0.75rem;
}


.signature p {
    text-align: right;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background-image: url('../images/47892eabaa0c7cefcedd2c611d6d2b79.jpg');
    background-size: cover;
    background-position: center 70%;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(82, 113, 255, 0.75), rgba(59, 91, 219, 0.75));
    z-index: 1;
}

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

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.cta-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

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

.btn-primary:hover {
    background: #f8fafc;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
.cta-content {
grid-template-columns: 1fr;
text-align: center;
gap: 2rem;
}

.cta-text h2 {
font-size: 2.5rem;
}
    }

    .cta-buttons {
        max-width: 400px;
        margin: 0 auto;
    }
}

.cta-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 113, 255, 0.2);
}

/* Quote Box */
.quote-box {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--primary);
    color: white;
    border-radius: 1rem;
}

.quote-box blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
}

/* Responsive Design */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-group {
        flex-direction: column;
    }

    .nav-links {
        display: flex;
    }
}

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

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

/* Quote Ribbon */
.quote-ribbon {
    position: relative;
    cursor: none;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #3b5bdb);
    padding: 3.5rem 0;
    margin: -2rem 0;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(82, 113, 255, 0.2);
}

.quote-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.quote-content::before,
.quote-content::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    height: 3px;
    width: 100px;
    top: 50%;
}

.quote-content::before {
    left: -120px;
}

.quote-content::after {
    right: -120px;
    transform: rotate(180deg);
}

.quote-text {
    font-size: 2rem;
    color: white;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: inline-block;
    position: relative;
    font-style: italic;
    cursor: default;
}

.quote-text .char {
    display: inline-block;
    transition: all 0.08s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    margin: 0;
    will-change: transform;
}

.quote-text .char:hover {
    transform: translateY(-8px) scale(1.4);
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.9);
    z-index: 2;
}


@keyframes glow {
    0%, 100% {
        text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.3);
    }
}

.custom-cursor {
    position: fixed;
    pointer-events: none;
    font-size: 32px;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.1s ease;
    animation: bounce 2s infinite;
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(20deg) scale(1.1);
    }
}

/* Concept Section Styles */
.concept-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: -30px;
}

.concept-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.concept-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(82, 113, 255, 0.1);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.concept-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.concept-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.concept-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 4rem;
}

.concept-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 113, 255, 0.1);
    box-shadow: 0 4px 20px rgba(82, 113, 255, 0.05);
    overflow: hidden;
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(82, 113, 255, 0.1);
    border-color: rgba(82, 113, 255, 0.2);
}

.concept-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(82, 113, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.concept-card:hover .concept-card-icon {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.concept-card-content h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.concept-card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.concept-card-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(82, 113, 255, 0.1);
    transition: all 0.3s ease;
}

.concept-card:hover .concept-card-number {
    color: rgba(82, 113, 255, 0.2);
    transform: scale(1.1);
}

.video-preview {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

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

.video-preview:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(82, 113, 255, 0.3);
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #3b5bdb;
    box-shadow: 0 15px 40px rgba(82, 113, 255, 0.4);
}

@media (max-width: 1024px) {
    .concept-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concept-media {
        grid-column: 1 / -1;
    }
}

/* Concept Media Section */
.concept-media-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(82, 113, 255, 0.05);
    margin-top: 2rem;
}

.concept-media-content {
    padding: 2rem;
}

.concept-media-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.concept-media-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.concept-outcomes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.concept-outcomes li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.5;
}

.concept-outcomes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 1024px) {
    .concept-media-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .concept-header {
        margin-bottom: 2rem;
    }
    
    .concept-title {
        font-size: 2rem;
    }
    
    .concept-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .concept-card {
        padding: 1.5rem;
    }
    
    .concept-card-number {
        font-size: 2.5rem;
    }

    .concept-media-content {
        padding: 1rem;
    }

    .concept-media-content h3 {
        font-size: 1.25rem;
    }
}

/* Objectives Section */
.objectives-section {
    cursor: none;
    position: relative;
    overflow: visible;
    padding-top: 30px;
}

.objectives-container {
    position: relative;
    z-index: 3;
}

.objectives-cursor {
    position: absolute;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.1s ease;
    opacity: 0;
}

.cursor-logo {
    width: 65px;
    height: auto;
}


.objectives-section {
    background-image: url('../images/IMTheNext.png');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    border-radius: 30px;
    box-shadow: 0 -15px 40px rgba(82, 113, 255, 0.15),
                0 15px 40px rgba(82, 113, 255, 0.15);
    transform: translateY(-2px);
    z-index: 2;
    margin-bottom: -30px;
    overflow: hidden;
}

.objectives-section > .container {
    position: relative;
    z-index: 2;
}

.objectives-section .section-title,
.objectives-section .section-title .highlight {
    color: white;
}

.objectives-section .intro-badge {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    display: block;
    width: fit-content;
    margin: 0 auto 1rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.objective-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: rotateX(5deg) rotateY(0deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.objective-card:hover {
    transform: rotateX(10deg) rotateY(5deg) translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.objective-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.objective-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.objective-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

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

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

.objective-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.objective-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--secondary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/4;
    width: 100%;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:nth-child(3) img {
    transform: scale(1.2);
}

.gallery-item:last-child img {
    object-position: center 30%;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .concept-grid,
    .objectives-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item {
        aspect-ratio: 1/1;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

/* Cards */
.card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0.25rem;
}

.card p {
    color: #475569;
    line-height: 1.4;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: center 15%;
}

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

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

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

    .card-content {
        padding: 1.5rem;
        order: 2;
    }

    .card-image {
        aspect-ratio: 16/9;
        order: 1;
    }
}

/* Target Groups Styles */
.target-groups {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.target-group {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.target-group:hover {
    transform: translateX(10px);
}

.target-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.target-content h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.target-features {
    margin-top: 1.5rem;
    list-style: none;
}

.target-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.target-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Inclusion Section */
.inclusion-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #1e293b;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.inclusion-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.inclusion-section .section-title {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.inclusion-intro {
    font-size: 1.15rem;
    color: #475569;
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.inclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.inclusion-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #334155;
}

.inclusion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.inclusion-icon {
    font-size: 1.5rem;
}

.inclusion-support {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.inclusion-support h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.support-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0.5rem auto 0;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #475569;
    padding: 1rem;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateX(5px);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 1200px) {
    .inclusion-list,
    .inclusion-support {
        grid-template-columns: 1fr;
        max-width: 600px;
        width: 100%;
    }

    .inclusion-support {
        padding: 2rem;
        margin-top: 1.5rem;
    }

    .support-list {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }

    .support-item {
        padding: 0.75rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .support-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .inclusion-section .section-title {
        font-size: 2.5rem;
    }

    .inclusion-item {
        padding: 1.25rem;
    }

    .inclusion-support {
        padding: 2rem;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #718096;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .target-groups {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diversity-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .diversity-stats {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Guests Styles */
.guests-featured {
    margin: 2rem 0 6rem;
    position: relative;
    overflow: visible;
}

.guests-carousel {
    display: flex;
    gap: 3rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -1rem;
}

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

.guest-card.featured {
    flex: 0 0 auto;
    width: calc(50% - 1.5rem);
    scroll-snap-align: center;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.guest-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(82, 113, 255, 0.15);
}

.guest-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.guest-card.featured:hover .guest-image img {
    transform: scale(1.05);
}

.guest-info {
    padding: 2rem;
}

.guest-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.guest-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.guest-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.carousel-btn {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(82, 113, 255, 0.1);
}

.carousel-btn-outline {
    background-color: transparent;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 113, 255, 0.2);
}

.guest-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: center 15%;
}

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

.guest-card:hover {
    transform: translateY(-5px);
}

.guest-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.guest-image {
    position: relative;
    overflow: hidden;
}

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

.guest-info {
    padding: 2rem;
}

.guest-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.guest-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.guest-bio {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guest-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}

.achievement {
    background: rgba(82, 113, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.achievement:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.guest-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guest-card.featured:hover::before {
    opacity: 1;
}

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

/* Role Section */
.role-key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.role-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
}

.role-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.role-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Join Section */
.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.join-features {
    margin: 2rem 0;
}

.join-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.join-feature .feature-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.join-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .guest-card.featured {
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }

    .guests-carousel {
        padding: 1.5rem 0;
        gap: 0;
        scroll-padding: 1rem;
    }

    .guest-image {
        height: 250px;
    }

    .guest-info {
        padding: 1.5rem;
    }

    .guests-featured {
        margin: 1rem 0 4rem;
    }

    .carousel-nav {
        margin-top: 2rem;
    }

    .carousel-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .guests-grid {
        grid-template-columns: 1fr;
    }

    .role-grid {
        grid-template-columns: 1fr;
    }

    .join-grid {
        grid-template-columns: 1fr;
    }
}

/* Forms Section Styles */
.forms-section {
    padding: 4rem 0;
}

.forms-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: white;
    border-radius: 2rem;
    font-size: 1rem;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.form-container {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(82, 113, 255, 0.1);
}

.form-container.active {
    display: block;
}

.form-container h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.form-intro {
    color: #4a5568;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.participation-form {
    margin-top: 2rem;
    padding: 0 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(82, 113, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .forms-tabs {
        flex-direction: column;
        padding: 0 1rem;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

/* Donation Styles */
.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.donation-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.amount-btn {
    padding: 1rem;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    background: white;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary);
    color: white;
}

.amount-btn.custom {
    grid-column: 1 / -1;
}

.donation-benefits {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(82, 113, 255, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.donation-benefits:hover {
    transform: translateY(-5px);
}

.donation-benefits h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    margin: 1rem 0;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.donation-example {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary);
}

/* Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-height: 280px;
}

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

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    font-size: 1.25rem;
}

.impact-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

/* Mécénat Section */
.mecenat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mecenat-content h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.mecenat-features {
    margin: 2rem 0;
}

.mecenat-feature {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.mecenat-feature .feature-icon {
    font-size: 1.5rem;
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.mecenat-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-height: 160px;
}

.partner-card:nth-child(1) {
    background: black;
}

.partner-card:nth-child(2) {
    background: #F4F4F4;
}

.partner-card:nth-child(3) {
    background: #1E1E1E;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80px;
    transition: transform 0.3s ease;
}

.partner-card:nth-child(1) img,
.partner-card:nth-child(3) img {
    max-height: 140px;
    width: auto;
}

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

@media (max-width: 768px) {
    .donation-grid,
    .impact-grid,
    .mecenat-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .mecenat-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Vision Page Styles */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.episode-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px);
}

.episode-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.episode-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.episode-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.episode-status.planned {
    background: #f0f9ff;
    color: #0369a1;
}

.episode-status.progress {
    background: #f0fdf4;
    color: #166534;
}

/* Arena Section */
.arena-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.arena-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.arena-location {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.arena-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.arena-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.arena-feature {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.arena-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: calc(50% - 2rem);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-date {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.timeline-list {
    list-style: none;
}

.timeline-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.project-card h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.project-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-top: 1rem;
    background: #f0f9ff;
    color: #0369a1;
}

/* Community Section */
.community-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.community-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.community-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .episodes-grid,
    .arena-grid,
    .projects-grid,
    .community-stats {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-content {
        width: calc(100% - 2rem);
        margin-left: 2rem !important;
    }

    .arena-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 80px;
    height: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon .icon {
    width: 24px;
    height: 24px;
    color: white;
}

.info-card h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #4a5568;
}

.social-contact {
    margin-top: 1rem;
}

.social-contact h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    color: var(--secondary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem;
}

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

    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Page Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-block {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.info-block p {
    margin-bottom: 0.5rem;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #718096;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 0 1rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer h3 {
    margin-bottom: 1rem;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: white;
}

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

.footer-bottom p {
    margin-bottom: 1rem;
    color: #9ca3af;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
