/* #region Hero Section */

    .hero-container {
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--spacing-xl) var(--spacing-lg);
        position: relative;
        z-index: 1;
    }

    .hero-content {
        max-width: 800px;
        width: 100%;
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }

    .main-heading {
        font-size: var(--fs-4xl);
        font-weight: 700;
        margin-bottom: var(--spacing-lg);
        color: var(--color-gray-900);
    }

    .main-description {
        font-size: var(--fs-lg);
        color: var(--color-gray-700);
        line-height: 1.6;
        margin-bottom: 0;
    }

    .animated-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .floating-shape {
        position: absolute;
        border-radius: var(--radius-full);
        background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
        will-change: transform;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        top: 20%;
        right: 15%;
        animation-delay: 1s;
    }

    .shape-3 {
        width: 100px;
        height: 100px;
        bottom: 20%;
        left: 20%;
        animation-delay: 2s;
    }

    .shape-4 {
        width: 40px;
        height: 40px;
        bottom: 30%;
        right: 25%;
        animation-delay: 3s;
    }

    .shape-5 {
        width: 70px;
        height: 70px;
        top: 50%;
        left: 5%;
        animation-delay: 4s;
    }

    @keyframes float {
        0%, 100% { 
            transform: translateY(0px) rotate(0deg); 
        }
        50% { 
            transform: translateY(-20px) rotate(180deg); 
        }
    }
    /* #endregion */

/* #region Accreditations */

.accreditations-section {
    margin: var(--spacing-lg) var(--spacing-2xl);
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    justify-items: space-evenly;
}

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

.accreditations-section .section-header {
    padding: var(--spacing-2xl);
}

.affiliations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%;
}

.affiliations-grid .affiliation {
    width: 50%;
    padding: var(--spacing-lg) var(--spacing-2xl);
    flex-grow: 1;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "header"
        "content"
        "footer";
    gap: var(--spacing-md);
    background: #fff;
    outline: 2px solid var(--color-gray-400);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.affiliations-grid .affiliation:hover {
    background-color: var(--color-gray-100);
    cursor: default;
}

.affiliation-header {
    grid-area: header;
    height: 50px;
    max-width: 60%;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.affiliation-content {
    grid-area: content;
    display: flex;
    flex-direction: column;
}

.affiliation-content h2 {
    grid-area: content;
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-sm);
}

.affiliation-footer {
    grid-area: footer;
    cursor: pointer;
    transition: var(--transition-base);
}

.affiliation-footer a:hover {
    font-weight: bold;
}

/* #endregion */