:root {
    --blue-main: #009CFF;
    --blue-dark: #002955;
    --blue-deep: #1B263B;
    --blue-mid: #1E3E62;
    --blue-soft: #415A77;
    --blue-light: #749FC4;
    --white: #FFFFFF;
    --light: #D0DFEB;
    --sky: #D0DFEB;
    --sky-soft: #1B263B;
    --text: #D0DFEB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 20%, rgba(0,156,255,0.10), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(65,90,119,0.18), transparent 32%),
        linear-gradient(135deg, #1B263B 0%, #002955 45%, #1E3E62 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 8%;
    scroll-margin-top: 120px;
}

h1,
h2,
h3 {
    line-height: 1.3;
}

p {
    color: var(--light);
}

ul {
    list-style: none;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(18px, 3vw, 45px);
    padding: 18px 6%;
    background: rgba(0, 41, 85, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 156, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 18px);
    flex-shrink: 0;
}

.logo-container img {
    width: clamp(85px, 9vw, 125px);
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-container img:last-child {
    width: clamp(60px, 6.5vw, 90px);
}

nav {
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(14px, 2vw, 28px);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

nav::-webkit-scrollbar {
    display: none;
}

nav a {
    position: relative;
    flex-shrink: 0;
    color: var(--light);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--blue-main);
    transition: 0.3s ease;
}

nav a:hover {
    color: var(--blue-main);
}

nav a:hover::after {
    width: 100%;
}

#home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    background:
        radial-gradient(circle at 15% 25%, rgba(0,156,255,0.05), transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(65,90,119,0.12), transparent 35%),
        linear-gradient(135deg, #1B263B, #002955, #1E3E62);
    background-size: 160% 160%;
    animation: backgroundFlow 12s ease-in-out infinite;
}

#home::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(0,156,255,0.03);
    border-radius: 50%;
    left: -180px;
    top: 20%;
    animation: orbitOne 18s linear infinite;
}

#home::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(116,159,196,0.03);
    border-radius: 50%;
    right: -300px;
    bottom: -250px;
    animation: orbitTwo 24s linear infinite;
}

#home p:first-child {
    color: var(--blue-main);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

#home h1 {
    max-width: 850px;
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

#home p:last-child {
    font-size: 20px;
    color: var(--light);
}

#about {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

#about h2,
#mission h2,
#values h2,
#goals h2,
#committees h2,
#achievements h2,
#activities h2 {
    color: var(--white);
}

#about h2 {
    position: relative;
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 45px;
}

#about h2::after,
#mission h2::after,
#values h2::after,
#goals h2::after,
#committees h2::after,
#achievements h2::after,
#activities h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 18px auto 0;
    background: var(--blue-main);
    border-radius: 10px;
}

#about p {
    max-width: 900px;
    padding: 45px 55px;
    border: 1px solid rgba(0, 156, 255, 0.22);
    border-radius: 28px;
    background: rgba(30, 62, 98, 0.72);
    backdrop-filter: blur(12px);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 2.2;
    color: var(--light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

#mission {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#mission::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(0, 156, 255, 0.06);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    opacity: 0.8;
    animation: orbitOne 20s linear infinite;
}

#mission::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(116, 159, 196, 0.05);
    border-radius: 50%;
    bottom: -160px;
    left: -100px;
    opacity: 0.8;
    animation: orbitTwo 22s linear infinite;
}

#mission h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 40px;
}

#mission p {
    position: relative;
    z-index: 1;
    max-width: 950px;
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 2.2;
    color: var(--light);
    margin: 0;
}

#values {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#values h2 {
    text-align: center;
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 60px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.values-container > div {
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    border: 1px solid rgba(0, 156, 255, 0.2);
    border-radius: 28px;
    background: rgba(30, 62, 98, 0.72);
    backdrop-filter: blur(14px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

.values-container > div::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 156, 255, 0.1);
    top: -45px;
    right: -45px;
    transition: transform 0.5s ease;
}

.values-container > div:hover {
    transform: translateY(-12px);
    border-color: rgba(0,156,255,0.5);
    box-shadow:
        0 20px 50px rgba(0,156,255,0.15),
        0 0 25px rgba(0,156,255,0.08);
}

.values-container > div:hover::before {
    transform: scale(2.5);
}

.values-container h3 {
    position: relative;
    z-index: 1;
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--white);
}

.values-container p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 2;
    color: var(--light);
}

#goals {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#goals h2 {
    text-align: center;
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 60px;
}

#goals ul {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

#goals li {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    padding: 40px 45px 40px 85px;
    border: 1px solid rgba(0, 156, 255, 0.2);
    border-radius: 25px;
    background: rgba(65, 90, 119, 0.38);
    backdrop-filter: blur(12px);
    color: var(--light);
    font-size: 18px;
    line-height: 2;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

#goals li::before {
    content: "01";
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 156, 255, 0.14);
    transition: 0.4s ease;
}

#goals li:nth-child(2)::before {
    content: "02";
}

#goals li:nth-child(3)::before {
    content: "03";
}

#goals li:nth-child(4)::before {
    content: "04";
}

#goals li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--blue-main);
    border-radius: 0 25px 25px 0;
    transition: 0.4s ease;
}

#goals li:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 156, 255, 0.45);
    box-shadow: 0 20px 50px rgba(0, 156, 255, 0.12);
}

#goals li:hover::before {
    color: rgba(0, 156, 255, 0.25);
    transform: scale(1.1);
}

#goals li:hover::after {
    height: 100%;
}

#committees {
    min-height: 100vh;
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
}

#committees h2 {
    text-align: center;
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 70px;
}

.committees {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.committee {
    position: relative;
    min-height: 270px;
    padding: 38px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    border: 1px solid rgba(0, 156, 255, 0.2);
    border-radius: 28px;
    background: rgba(30, 62, 98, 0.72);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

.committee:nth-child(1),
.committee:nth-child(2),
.committee:nth-child(3),
.committee:nth-child(4),
.committee:nth-child(5),
.committee:nth-child(6),
.committee:nth-child(7) {
    grid-column: span 2;
}

.committee:nth-child(7) {
    grid-column: 3 / span 2;
    margin-right: 0;
}

.committee::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(0, 156, 255, 0.14);
    top: -90px;
    left: -70px;
    transition: 0.5s ease;
}

.committee::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 0;
    background: var(--blue-main);
    transition: 0.45s ease;
}

.committee:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 156, 255, 0.45);
    box-shadow: 0 25px 60px rgba(0, 156, 255, 0.12);
}

.committee:hover::before {
    transform: scale(1.5);
}

.committee:hover::after {
    height: 100%;
}

.committee .tag {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    color: var(--blue-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    direction: ltr;
    text-align: right;
}

.committee h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 25px;
}

.committee p {
    position: relative;
    z-index: 1;
    color: var(--light);
    font-size: 16px;
    line-height: 2;
}

#achievements {
    min-height: 90vh;
    padding: 120px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#achievements h2 {
    text-align: center;
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 65px;
}

.achievement {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto 35px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 45px;
    padding: 25px;
    border: 1px solid rgba(0, 156, 255, 0.2);
    border-radius: 30px;
    background: rgba(65, 90, 119, 0.38);
    backdrop-filter: blur(14px);
    transition: 0.45s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

.achievement:nth-of-type(3) {
    direction: ltr;
}

.achievement img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
    transition: 0.5s ease;
}

.achievement h3 {
    color: var(--white);
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.6;
    text-align: right;
}

.achievement:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 156, 255, 0.45);
    box-shadow: 0 25px 60px rgba(0, 156, 255, 0.12);
}

.achievement:hover img {
    transform: scale(1.03);
}

#activities {
    min-height: 100vh;
    padding: 120px 7%;
    position: relative;
    overflow: hidden;
}

#activities h2 {
    text-align: center;
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 65px;
}

.activity {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 45px;
    padding: 25px;
    border: 1px solid rgba(0, 156, 255, 0.2);
    border-radius: 30px;
    background: rgba(30, 62, 98, 0.72);
    backdrop-filter: blur(14px);
    transition: 0.45s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

.activity-images {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.activity-item {
    min-width: 0;
    text-align: right;
}

.activity-item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 22px;
    transition: 0.5s ease;
}

.activity:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 156, 255, 0.45);
    box-shadow: 0 25px 60px rgba(0, 156, 255, 0.12);
}

.activity-item img:hover {
    transform: scale(1.025);
}

.activity-caption {
    margin-top: 18px;
    padding: 0 15px;
    color: var(--light);
    font-size: 17px;
    line-height: 2;
    text-align: center;
}

#registration {
    padding: 85px 7%;
    text-align: center;
}

#registration h2 {
    color: var(--white);
    font-size: clamp(38px, 5vw, 64px);
    margin-bottom: 45px;
}

#registration h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 18px auto 0;
    background: var(--blue-main);
    border-radius: 10px;
}

.registration-container {
    max-width: 820px;
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.registration-card {
    padding: 30px 28px 32px;
    background: rgba(27,38,59,0.58);
    border: 1px solid rgba(0,156,255,0.2);
    border-radius: 22px;
    transition: 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,156,255,0.5);
    box-shadow: 0 20px 50px rgba(0,156,255,0.12);
}

.registration-card img {
    width: 190px;
    height: 190px;
    object-fit: contain;
    display: block;
    margin: 0 auto 22px;
}

.registration-card h3 {
    color: var(--white);
    font-size: 21px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.registration-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 280px;
}

footer {
    position: relative;
    padding: 70px 7% 25px;
    background: linear-gradient(135deg, #002955, #1B263B);
    border-top: 1px solid rgba(0,156,255,0.25);
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(0,156,255,0.12);
    border-radius: 50%;
    left: -220px;
    bottom: -280px;
}

footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(116,159,196,0.1);
    border-radius: 50%;
    right: -150px;
    top: -180px;
}

.footer-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

footer .footer-logos img {
    width: 140px;
    height: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

footer .footer-logos img:last-child {
    width: 100px;
    max-width: 100px;
}

.footer-brand p {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand span {
    color: var(--light);
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 38px;
}

.footer-links h3 {
    display: none;
}

.footer-links a {
    width: auto;
    color: var(--light);
    font-size: 14px;
    margin: 0;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-main);
    transform: translateY(-3px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 50px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(116,159,196,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(208,223,235,0.65);
    font-size: 13px;
    margin: 0;
}

.developer-credit {
    color: var(--blue-main) !important;
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.achievement,
.activity {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.achievement.active,
.activity.active {
    opacity: 1;
    transform: translateY(0);
}

main > section {
    position: relative;
    border-top: 1px solid rgba(0,156,255,0.18);
}

main > section + section::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,156,255,0.15) 15%,
        rgba(0,156,255,0.8) 50%,
        rgba(0,156,255,0.15) 85%,
        transparent 100%
    );
    box-shadow: 0 0 12px rgba(0,156,255,0.35);
    animation: sectionBorder 4s ease-in-out infinite;
}

main > section + section::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #009CFF;
    box-shadow: 0 0 14px rgba(0,156,255,0.8);
    transform: translateX(-50%);
    animation: sectionDot 4s ease-in-out infinite;
}

@keyframes backgroundFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes orbitOne {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(80px, 40px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes orbitTwo {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-70px, -40px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes sectionBorder {
    0%, 100% {
        opacity: 0.35;
        transform: scaleX(0.75);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes sectionDot {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.3);
    }
}

@media (max-width: 1100px) {
    header {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 5%;
    }

    .logo-container {
        width: 100%;
        justify-content: center;
    }

    .logo-container img {
        width: 100px;
    }

    .logo-container img:last-child {
        width: 70px;
    }

    nav {
        width: 100%;
        justify-content: flex-start;
        gap: 22px;
        padding: 2px 5px 6px;
    }

    nav a {
        font-size: 13px;
    }

    #home {
        padding-top: 175px;
    }
}

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

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

    .committee:nth-child(1),
    .committee:nth-child(2),
    .committee:nth-child(3),
    .committee:nth-child(4),
    .committee:nth-child(5),
    .committee:nth-child(6),
    .committee:nth-child(7) {
        grid-column: span 1;
        margin-right: 0;
    }

    #goals ul {
        grid-template-columns: 1fr;
    }

    .achievement {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .achievement:nth-of-type(3) {
        direction: rtl;
    }

    .achievement img {
        height: 260px;
    }

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

    .activity-item img {
        height: 280px;
    }

    .registration-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    section {
        padding-left: 6%;
        padding-right: 6%;
        scroll-margin-top: 140px;
    }

    header {
        gap: 9px;
        padding: 10px 4%;
    }

    .logo-container {
        gap: 9px;
    }

    .logo-container img {
        width: 76px;
    }

    .logo-container img:last-child {
        width: 54px;
    }

    nav {
        gap: 18px;
        padding: 2px 4px 6px;
    }

    nav a {
        font-size: 12px;
    }

    #home {
        padding-top: 160px;
    }

    #home h1 {
        font-size: clamp(40px, 12vw, 65px);
    }

    #home p:last-child {
        font-size: 17px;
    }

    #about p {
        padding: 30px 25px;
    }

    #mission p {
        padding: 0 25px;
        font-size: 20px;
    }

    #values {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .values-container > div {
        min-height: 220px;
    }

    #goals {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    #goals li {
        min-height: 170px;
        padding: 35px 30px 35px 70px;
        font-size: 16px;
    }

    #goals li::before {
        left: 18px;
        font-size: 55px;
    }

    #committees {
        padding: 100px 6%;
    }

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

    .committee {
        grid-column: span 1 !important;
        margin-right: 0 !important;
    }

    #achievements {
        padding: 100px 6%;
    }

    .achievement {
        padding: 18px;
    }

    .achievement img {
        height: 220px;
    }

    #activities {
        padding: 100px 6%;
    }

    .activity {
        padding: 16px;
        border-radius: 24px;
    }

    .activity-item img {
        height: 230px;
        border-radius: 18px;
    }

    .activity-caption {
        font-size: 15px;
    }

    #registration {
        padding: 80px 6%;
    }

    .registration-card img {
        width: 160px;
        height: 160px;
    }

    footer {
        padding: 55px 6% 22px;
    }

    footer .footer-logos img {
        width: 120px;
        max-width: 120px;
    }

    footer .footer-logos img:last-child {
        width: 85px;
        max-width: 85px;
    }

    .footer-brand p {
        font-size: 17px;
    }

    .footer-links {
        gap: 15px 20px;
        margin-top: 30px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 35px;
        text-align: center;
    }
}