/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4E6BFF;
    --primary-dark: #3c56d9;
    --primary-light: #6a84ff;
    --secondary-green: #20CA66;
    --secondary-yellow: #f4d03f;
    --secondary-gray: #bdc3c7;
    --text-dark: #181C31;
    --text-body: #79808A;
    --text-light: #79808A;
    --text-white: #ffffff;
    --bg-light: #F4F7FA;
    --bg-white: #ffffff;
    --bg-dark: #181C31;
    --border-color: #D8E1ED;
    --accent-color: #20CA66;
    --accent-yellow: #f4d03f;
    --shadow-sm: 0px 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0px 6px 30px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0px 8px 70px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0px 6px 30px rgba(78, 107, 255, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 30px;
    --spacing-lg: 50px;
    --spacing-xl: 100px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.625;
    color: var(--text-body);
    background-color: var(--bg-white);
    font-weight: 400;
    font-size: 16px;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px var(--spacing-md);
}

@media (min-width: 769px) {
    .navbar-container {
        padding: var(--spacing-md) var(--spacing-md);
    }
}

.navbar-left {
    flex-shrink: 0;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 60px;
}

.navbar-right {
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-container:hover {
    opacity: 0.8;
}

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

.logo-text {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 180px 0 var(--spacing-xl);
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 51, 153, 0.05) 0%, rgba(0, 51, 153, 0.02) 100%);
    z-index: 0;
}

/* Hero Images Container */
.hero-images {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
}

/* Hero Decorative Elements */
.hero-shape-large {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 10;
    opacity: 0.9;
}

.hero-shape-01 {
    position: absolute;
    top: 40%;
    left: -10%;
    width: 120px;
    height: auto;
    z-index: 20;
    animation: float 6s ease-in-out infinite;
    display: none;
}

.hero-shape-02 {
    position: absolute;
    left: 21%;
    bottom: 19%;
    width: 90px;
    height: auto;
    z-index: 10;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
    display: none;
}

.hero-shape-03 {
    position: absolute;
    bottom: 18%;
    right: 15%;
    width: 70px;
    height: auto;
    z-index: 10;
    animation: float 7s ease-in-out infinite;
    animation-delay: 0.5s;
    display: none;
}

@media (min-width: 1536px) {
    .hero-shape-01,
    .hero-shape-02,
    .hero-shape-03 {
        display: block;
    }
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

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

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

/* Hero Content */
.hero-content {
    width: 100%;
    position: relative;
    z-index: 20;
    text-align: left;
}

.hero-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.24;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-body);
    margin-bottom: var(--spacing-lg);
    line-height: 1.84;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .hero-images {
        display: block;
    }

    .hero-content {
        width: 50%;
        max-width: 550px;
    }
}

@media (min-width: 1280px) {
    .hero-content {
        max-width: 600px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 62px;
    }
}


.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-light:hover {
    background-color: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-size: 45px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
    line-height: 1.22;
}

.section-description {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.625;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

/* Project Section */
.project-section {
    background-color: var(--bg-white);
}

/* Project Hero */
.project-hero {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .project-hero {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

.project-hero-video {
    flex: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.project-hero-content {
    flex: 1;
    padding: 20px;
}

@media (min-width: 1024px) {
    .project-hero-content {
        padding: 0;
    }
}

.project-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    margin-top: 16px;
}

.project-content {
    max-width: 1200px;
    margin: 40px auto 0;
}

.project-text {
    background-color: var(--bg-light);
    line-height: 1.8;
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.project-text::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: var(--bg-light);
    z-index: -1;
}

.project-text > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .project-text > * {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .project-text > * {
        padding: 0 48px;
    }
}

@media (min-width: 1280px) {
    .project-text {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .project-text > * {
        padding: 0 60px;
    }
}

.project-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.project-text h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.project-text ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.project-text li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.project-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

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

.project-item {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

/* Festival Hub Section */
.festival-hub {
    background-color: var(--bg-white);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

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

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

.feature-card {
    background-color: var(--bg-white);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--border-radius);
    border: 0.5px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-white);
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* Page Sections (Activities, Tools, Team) */
.page-section {
    padding-top: 150px;
    background-color: var(--bg-light);
}

/* Activities Hero Section */
.activities-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.activities-hero-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 2.5rem 1.25rem;
}

.decorative-semicircle-yellow {
    position: absolute;
    top: 41px;
    right: -30px;
    width: 80px;
    height: auto;
    z-index: 1;
}

.decorative-semicircle-blue {
    position: absolute;
    bottom: 201px;
    left: 58%;
    width: 219px;
    height: auto;
    z-index: 1;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.hero-image-1 {
    grid-column: 1;
    grid-row: 1;
    height: 350px;
}

.hero-image-2 {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 400px;
    margin-top: 60px;
}

.hero-image-3 {
    grid-column: 1;
    grid-row: 2;
    height: 350px;
}

.activities-hero-content {
    padding: 20px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero-pretitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: block;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Content subsections for Activities and Tools pages */
.activity-section,
.tools-section {
    margin-bottom: 60px;
}

.activity-section:last-child,
.tools-section:last-child {
    margin-bottom: 0;
}

.activity-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: var(--spacing-lg);
}

.activity-number {
    font-size: 48px;
    font-weight: 200;
    color: var(--primary-color);
    line-height: 1;
}

.activity-section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: var(--spacing-md);
}

.activity-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.activity-block {
    position: relative;
    background-color: var(--bg-white);
    border: 0.5px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.activity-block:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.activity-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--bg-light);
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: var(--bg-light);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

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

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    color: var(--text-white);
    z-index: 3;
}

.activity-block-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Color per section */
/* Learning Section - Blue */
.activity-section:nth-of-type(1) .activity-block-title {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Multiplier Events Section - Green */
.activity-section:nth-of-type(2) .activity-block-title {
    background-color: var(--secondary-green);
    color: var(--text-white);
}

/* Project Outputs Section - Yellow */
.activity-section:nth-of-type(3) .activity-block-title {
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
}

.activity-content p {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


/* Tools Section - New Layout */
.section-header-with-icon {
    margin-bottom: var(--spacing-md);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.video-card {
    background-color: var(--bg-white);
    border: 0.5px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: var(--bg-light);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-card:hover .play-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 24px;
    height: 24px;
    color: var(--text-white);
    margin-left: 4px;
}

.video-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    margin: 0;
    letter-spacing: 0.3px;
}

.video-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 var(--spacing-md) var(--spacing-md);
    margin: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background-color: #000;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: var(--transition);
}

.video-modal-close:hover {
    color: var(--primary-color);
}

/* PDF Grid */
.pdf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.pdf-card {
    background-color: var(--bg-white);
    border: 0.5px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg) var(--spacing-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pdf-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pdf-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.pdf-card:hover .pdf-icon {
    background-color: var(--primary-color);
}

.pdf-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
    transition: var(--transition);
}

.pdf-card:hover .pdf-icon svg {
    color: var(--text-white);
}

.pdf-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.3px;
}

.pdf-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-download:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn-download svg {
    width: 16px;
    height: 16px;
}


.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.partner-card {
    background-color: var(--bg-white);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--border-radius);
    border: 0.5px solid var(--border-color);
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-light);
}

.partner-card-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.partner-location {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    border: 0.5px solid var(--border-color);
}

.partner-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.partner-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: var(--spacing-xl) 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 80px;
        max-width: 900px;
        margin: 0 auto;
    }
}

.cta-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-text {
        text-align: left;
    }
}

.cta-action {
    flex-shrink: 0;
}

.cta-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.5px;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 48px;
    }
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    color: var(--text-body);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

/* Partner Logos */
.partner-logos {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.partners-title {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-body);
    margin-bottom: var(--spacing-lg);
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 1.25rem;
}

.partner-logo {
    height: 60px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(0);
}

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

.footer-divider {
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-info {
    flex: 1;
}

.footer-funding {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-project {
    font-size: 13px;
    color: var(--text-body);
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 50px var(--spacing-md);
    }

    .navbar-left {
        flex: 1;
    }

    .navbar-center {
        position: fixed;
        top: var(--navbar-height, 160px);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--navbar-height, 160px));
        background-color: var(--bg-white);
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        justify-content: flex-start;
        padding-right: 0;
    }

    .navbar-center.active {
        right: 0;
    }

    .navbar-right {
        display: flex;
        align-items: center;
    }

    .logo-image {
        height: 70px;
        margin: 10px 0px;
    }

    .logo-text {
        font-size: 28px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        width: 100%;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding: 140px 0 var(--spacing-lg);
    }

    .hero-sphere-blue,
    .hero-shape,
    .hero-waves {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .activities-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .activities-hero-images {
        display: none;
    }

    .activities-hero-content {
        padding: 0;
        text-align: center;
    }

    .hero-main-title {
        font-size: 28px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero-description {
        text-align: center;
    }

    .decorative-semicircle-yellow,
    .decorative-semicircle-blue {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .activity-blocks {
        grid-template-columns: 1fr;
    }

    .activity-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .activity-number {
        font-size: 36px;
    }

    .activity-section-title {
        font-size: 28px;
    }

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

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

    .page-section {
        padding-top: 140px;
    }

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

    .project-text {
        padding: 24px;
    }

    .project-subtitle {
        font-size: 18px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .logos-grid {
        gap: 24px;
    }

    .partner-logo {
        height: 55px;
    }

    .logo-image {
        height: 40px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .page-section {
        padding-top: 140px;
    }
}

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

    .logo-text {
        font-size: 24px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 15px;
    }

    .feature-card,
    .activity-card {
        padding: 24px;
    }

    .partner-logo {
        height: 45px;
        max-width: 140px;
    }

    .logos-grid {
        gap: 20px;
    }
}

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

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

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

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