/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Section Background */
.affiliations-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    width: 100%;
    background: #ECF6FF;
}

/* Header */
.affiliations-header {
    text-align: center;
    margin-bottom: 30px;
}

    .affiliations-header h1 {
        font-family: 'Arial', sans-serif;
        font-weight: 700;
        font-size: 32px;
        color: #062A4D;
    }

/* Buttons */
.affiliations-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.button-primary, .button-outline {
    padding: 10px 35px;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    cursor: pointer;
}

.button-primary {
    background: #062A4D;
    color: #FFFFFF;
    border: 1px solid #062A4D;
}

.button-outline {
    background: #FFFFFF;
    color: #062A4D;
    border: 1px solid #062A4D;
}

/* Cards Section */
.affiliations-cards-container {
    display: flex;
    gap: 48px;
    padding: 30px;
    background: #062A4D;
    border-radius: 5px;
    width: 1196px;
    justify-content: center;
    flex-wrap: wrap;
}

.affiliation-card {
    background: #FFFFFF;
    border: 1px solid #062A4D;
    border-radius: 5px;
    width: 248px;
    height: 171px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

/* Card contents */
.card-icon {
    width: 25px;
    height: 25px;
}

.card-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #062A4D;
}

.card-text {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #062A4D;
    line-height: 18px;
}

/* Responsive Improvements */
@media (max-width: 1300px) {
    .affiliations-section {
        width: 100%;
        padding: 20px;
    }

    .affiliations-cards-container {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }
}
