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

body {
    font-family: Arial, sans-serif;
    background: #f4f8fc;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    overflow: hidden;
    flex: 1;
}

.site-footer {
    background: #1f4e8c;
    color: white;
    padding: 34px 0;
}

.footer-container {
    width: min(1100px, 90%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-brand h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #f0cf67;
}

.navbar {
    background: #1f4e8c;
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
    color: #f0cf67;
    opacity: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        width: 260px;
        flex-direction: column;
        gap: 0;
        background: #1b457c;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        padding: 8px 0;
        z-index: 1002;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 16px 20px;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.08);
        opacity: 1;
    }

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

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

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

    .hero-branding {
    flex-direction: column;
    gap: 18px;
    padding: 0 12px;
    }

    .hero-logo {
        width: min(150px, 42vw);
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .hero-copy p {
        margin: 0 auto;
    }

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

    .footer-links {
        justify-content: center;
    }
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #eaf2fb, #dce9f8);
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 18px;
    color: #163d6b;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4b5b70;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-block;
    background: #1f4e8c;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background: #173d6d;
    transform: translateY(-2px);
}

.parallax-hero {
    position: relative;
    min-height: 88vh;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 40px 20px;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 45, 0.38);
}

.parallax-text {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    color: white;
}

.hero-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 0 40px;
}

.hero-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: min(220px, 22vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22));
}

.hero-copy {
    max-width: 760px;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.08;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    line-height: 1.6;
    max-width: 700px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.3);
}

.founder-message-section {
    padding: 88px 0 96px;
    background:
        radial-gradient(circle at top left, rgba(240, 207, 103, 0.35), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #e9f1fb 100%);
}

.founder-message-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 52px 56px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(22, 61, 107, 0.12);
}

.founder-message-card h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #163d6b;
    margin-bottom: 26px;
}

.founder-quote {
    position: relative;
    padding: 18px 0 0 36px;
}

.founder-quote::before,
.founder-quote::after {
    position: absolute;
    color: rgba(240, 207, 103, 0.95);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
}

.founder-quote::before {
    content: "\201C";
    top: -16px;
    left: -10px;
    font-size: clamp(4.5rem, 8vw, 7rem);
}

.founder-quote::after {
    content: "\201D";
    right: 8px;
    bottom: -52px;
    font-size: clamp(4rem, 7vw, 6rem);
}

.founder-quote p {
    position: relative;
    z-index: 1;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.9;
    color: #2f4e71;
    font-style: italic;
    max-width: 720px;
}

.founder-quote footer {
    margin-top: 26px;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1f4e8c;
}

.who-we-are-section {
    padding: 88px 0 96px;
    background: #ffffff;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 34px;
    align-items: start;
}

.who-we-are-copy {
    padding-right: 10px;
}

.who-we-are-copy h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    color: #163d6b;
    margin-bottom: 22px;
}

.who-we-are-copy p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #4d6480;
    margin-bottom: 18px;
    max-width: 680px;
}

.objectives-panel {
    margin-top: 28px;
    padding: 24px 26px;
    border-left: 4px solid #f0cf67;
    border-radius: 0 18px 18px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
    box-shadow: 0 14px 32px rgba(22, 61, 107, 0.08);
    max-width: 720px;
}

.objectives-panel h3 {
    color: #163d6b;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.objectives-list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: #35516f;
    line-height: 1.7;
}

.objectives-list li {
    position: relative;
    padding-left: 20px;
}

.objectives-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0cf67;
}

.who-we-are-highlights {
    display: grid;
    gap: 18px;
}

.who-card {
    padding: 26px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fc 100%);
    border: 1px solid rgba(31, 78, 140, 0.08);
    box-shadow: 0 16px 36px rgba(22, 61, 107, 0.08);
}

.who-card h3 {
    color: #1f4e8c;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.who-card p {
    color: #556a84;
    line-height: 1.7;
}

.club-message-section {
    padding: 88px 0 96px;
    background:
        linear-gradient(135deg, rgba(31, 78, 140, 0.08), rgba(240, 207, 103, 0.08)),
        #f6faff;
}

.club-message-layout {
    display: grid;
    gap: 30px;
}

.club-message-intro {
    max-width: 760px;
}

.club-message-intro h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    color: #163d6b;
    margin-bottom: 18px;
}

.club-message-intro p:last-child {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #516982;
}

.club-message-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.club-message-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 78, 140, 0.08);
    box-shadow: 0 18px 40px rgba(22, 61, 107, 0.08);
}

.club-message-card h3 {
    font-size: 1.2rem;
    color: #1f4e8c;
    margin-bottom: 12px;
}

.club-message-card p {
    color: #556c86;
    line-height: 1.75;
}

.featured-message {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #1f4e8c 0%, #163d6b 100%);
    box-shadow: 0 22px 48px rgba(22, 61, 107, 0.18);
}

.club-message-text {
    color: #ffffff;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.8;
    font-style: italic;
}

.featured-message .club-message-text {
    color: #ffffff;
}

.board-section {
    padding: 88px 0 104px;
    background:
        radial-gradient(circle at top center, rgba(31, 78, 140, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
}

.board-intro {
    max-width: 760px;
    margin-bottom: 36px;
}

.board-intro h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    color: #163d6b;
    margin-bottom: 18px;
}

.board-intro p:last-child {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #546b84;
}

.board-tree {
    position: relative;
    display: grid;
    gap: 28px;
}

.board-tree-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.board-tree-row-lead .board-node {
    max-width: 320px;
}

.board-tree-connector {
    width: min(72%, 760px);
    height: 44px;
    margin: -6px auto 0;
    position: relative;
}

.board-tree-connector::before,
.board-tree-connector::after {
    content: "";
    position: absolute;
    background: rgba(31, 78, 140, 0.18);
}

.board-tree-connector::before {
    top: 0;
    left: 50%;
    width: 2px;
    height: 24px;
    transform: translateX(-50%);
}

.board-tree-connector::after {
    left: 0;
    right: 0;
    top: 24px;
    height: 2px;
}

.board-node {
    position: relative;
    width: min(100%, 250px);
    min-height: 340px;
    padding: 20px;
    border: 0;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 44px rgba(22, 61, 107, 0.10);
    outline: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}

.board-node:hover,
.board-node:focus-visible,
.board-node:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 28px 54px rgba(22, 61, 107, 0.16);
}

.board-image-placeholder {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(31, 78, 140, 0.16), rgba(240, 207, 103, 0.28)),
        #dfeaf8;
    color: #1f4e8c;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.board-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    margin-bottom: 18px;
}

.board-placeholder-logo {
    width: min(120px, 46%);
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(22, 61, 107, 0.16));
}

.board-summary {
    text-align: center;
}

.board-role {
    color: #1f4e8c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.board-summary h3 {
    color: #163d6b;
    font-size: 1.3rem;
}

.board-detail {
    position: absolute;
    inset: auto 16px 16px 16px;
    padding: 18px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(31, 78, 140, 0.97), rgba(22, 61, 107, 0.97));
    color: #ffffff;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.board-node:hover .board-detail,
.board-node:focus-visible .board-detail,
.board-node:focus-within .board-detail {
    opacity: 1;
    transform: translateY(0);
}

.board-detail p {
    line-height: 1.7;
    font-size: 0.97rem;
}

.board-empty-state {
    padding: 32px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5fc 100%);
    border: 1px solid rgba(31, 78, 140, 0.08);
    box-shadow: 0 20px 44px rgba(22, 61, 107, 0.08);
    text-align: center;
}

.board-empty-state h3 {
    color: #163d6b;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.board-empty-state p {
    color: #566d86;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

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

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-shell {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.page-hero {
    padding: 80px 0 32px;
    background: linear-gradient(135deg, #eaf2fb 0%, #d6e6fa 100%);
}

.eyebrow {
    color: #1f4e8c;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #163d6b;
    margin-bottom: 18px;
}

.page-intro {
    max-width: 720px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #48607c;
}

.page-section {
    padding: 36px 0 80px;
}

.activities-intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.activities-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: #163d6b;
    margin-bottom: 16px;
}

.activity-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.activity-card {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(22, 61, 107, 0.08);
    border: 1px solid rgba(31, 78, 140, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-card:hover,
.activity-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(22, 61, 107, 0.12);
    outline: none;
}

@media (max-width: 980px) {
    .activity-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.activity-card-image {
    height: 220px;
    width: 100%;
    display: block;
    object-fit: cover;
    background:
        linear-gradient(135deg, rgba(31, 78, 140, 0.18), rgba(240, 207, 103, 0.3)),
        #dfe9f7;
}

.activity-card-image-placeholder {
    display: grid;
    place-items: center;
    padding: 24px;
}

.activity-placeholder-logo {
    width: min(120px, 42%);
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(22, 61, 107, 0.16));
}

.activity-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-date {
    color: #1f4e8c;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.activity-card h3 {
    color: #163d6b;
    font-size: 1.32rem;
    line-height: 1.3;
}

.activity-description-preview {
    color: #566d86;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.75em * 4);
}

.activity-read-more {
    align-self: flex-start;
    color: #1f4e8c;
    font-weight: 700;
}

.activity-empty-state {
    grid-column: 1 / -1;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
    border: 1px solid rgba(31, 78, 140, 0.08);
    box-shadow: 0 18px 44px rgba(22, 61, 107, 0.08);
    text-align: center;
}

.activity-empty-state h3 {
    color: #163d6b;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.activity-empty-state p {
    color: #566d86;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

.activity-modal[hidden] {
    display: none;
}

.activity-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.activity-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 26, 46, 0.62);
}

.activity-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(86vh, 860px);
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(11, 26, 46, 0.28);
    display: grid;
    grid-template-rows: auto 1fr;
}

.activity-modal-image-wrap {
    height: 260px;
    background: linear-gradient(135deg, rgba(31, 78, 140, 0.18), rgba(240, 207, 103, 0.3)), #dfe9f7;
}

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

.activity-modal-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #1f4e8c;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.activity-modal-image-placeholder .activity-placeholder-logo {
    width: auto;
    max-width: min(180px, 42%);
    max-height: 78%;
    object-fit: contain;
}

.activity-modal-content {
    padding: 28px 28px 32px;
    overflow-y: auto;
}

.activity-modal-content h3 {
    color: #163d6b;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.activity-modal-description {
    color: #566d86;
    line-height: 1.85;
}

.activity-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #163d6b;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(11, 26, 46, 0.14);
}

body.modal-open {
    overflow: hidden;
}

.pagination-nav {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #1f4e8c;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(22, 61, 107, 0.08);
    border: 1px solid rgba(31, 78, 140, 0.08);
}

.pagination-link.is-current {
    background: #1f4e8c;
    color: #ffffff;
}

.pagination-link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.pagination-arrow {
    min-width: 96px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.contact-info h2,
.contact-form-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: #163d6b;
    margin-bottom: 16px;
}

.contact-lead {
    color: #536b84;
    line-height: 1.8;
    font-size: 1.06rem;
    max-width: 640px;
    margin-bottom: 22px;
}

.contact-info-cards {
    display: grid;
    gap: 18px;
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 44px rgba(22, 61, 107, 0.08);
    border: 1px solid rgba(31, 78, 140, 0.08);
}

.contact-info-card h3 {
    color: #1f4e8c;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
    color: #566d86;
    line-height: 1.75;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #1f4e8c;
}

.social-link-list {
    display: grid;
    gap: 12px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
    border: 1px solid rgba(31, 78, 140, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(22, 61, 107, 0.08);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #1f4e8c;
    color: #f0cf67;
    flex: 0 0 auto;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.6;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-messages {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    scroll-margin-top: 110px;
}

.form-messages:focus {
    outline: none;
}

.form-message,
.form-error {
    margin: 0;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.form-message {
    padding: 12px 14px;
    background: #eaf7ef;
    color: #1d6b3a;
    border: 1px solid rgba(29, 107, 58, 0.18);
}

.form-message-success {
    background: #eaf7ef;
    color: #1d6b3a;
    border-color: rgba(29, 107, 58, 0.18);
}

.form-message-error,
.form-error {
    color: #9b2630;
}

.form-message-error {
    background: #fff1f2;
    border-color: rgba(155, 38, 48, 0.18);
}

.form-field label {
    color: #163d6b;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(31, 78, 140, 0.14);
    border-radius: 16px;
    padding: 14px 16px;
    background: #f9fbfe;
    color: #274866;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1f4e8c;
    box-shadow: 0 0 0 4px rgba(31, 78, 140, 0.12);
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-submit {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    background: #1f4e8c;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: #173d6d;
    transform: translateY(-1px);
}

.faq-intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.faq-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: #163d6b;
    margin-bottom: 16px;
}

.faq-accordion {
    display: grid;
    gap: 18px;
}

.faq-item {
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(31, 78, 140, 0.08);
    box-shadow: 0 16px 40px rgba(22, 61, 107, 0.08);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #163d6b;
    position: relative;
    padding-right: 64px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(31, 78, 140, 0.08);
    color: #1f4e8c;
    font-size: 1.2rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] summary::after {
    content: "-";
    background: rgba(240, 207, 103, 0.22);
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    color: #566d86;
    line-height: 1.8;
}

.page-grid,
.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.content-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(31, 78, 140, 0.08);
}

.content-card h2 {
    color: #163d6b;
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.content-card p {
    color: #52657d;
    line-height: 1.7;
}

.about-objectives-section {
    padding-top: 24px;
}

.about-intro-block {
    max-width: 780px;
    margin-bottom: 30px;
}

.about-intro-block h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.08;
    color: #163d6b;
    margin-bottom: 18px;
}

.about-lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #506983;
}

.objective-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.objective-icon-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
    box-shadow: 0 18px 42px rgba(22, 61, 107, 0.08);
    border: 1px solid rgba(31, 78, 140, 0.08);
}

.objective-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #1f4e8c 0%, #3f76b7 100%);
    color: #f0cf67;
    box-shadow: 0 14px 30px rgba(31, 78, 140, 0.18);
}

.objective-icon svg {
    width: 34px;
    height: 34px;
    stroke: #f0cf67;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.objective-icon-card:first-child .objective-icon svg path:first-child {
    fill: rgba(240, 207, 103, 0.18);
    stroke: #f0cf67;
}

.objective-icon-card h3 {
    color: #163d6b;
    font-size: 1.28rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

.objective-icon-card p {
    color: #566d86;
    line-height: 1.75;
}

.about-story-card {
    padding: 30px 32px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(240, 207, 103, 0.22), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #edf4fc 100%);
    box-shadow: 0 20px 48px rgba(22, 61, 107, 0.09);
}

.about-story-card p {
    max-width: 920px;
    color: #4f657e;
    line-height: 1.85;
    font-size: 1.05rem;
}

.district-section {
    padding-top: 8px;
}

.district-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: start;
}

.district-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    color: #163d6b;
    margin-bottom: 18px;
}

.district-copy p {
    color: #526980;
    line-height: 1.85;
    font-size: 1.06rem;
    margin-bottom: 16px;
    max-width: 720px;
}

.district-highlights {
    display: grid;
    gap: 18px;
}

.district-card {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5fd 100%);
    border: 1px solid rgba(31, 78, 140, 0.08);
    box-shadow: 0 18px 40px rgba(22, 61, 107, 0.08);
}

.district-card h3 {
    color: #1f4e8c;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.district-card p {
    color: #586f87;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 56px 0 24px;
    }

    .page-section {
        padding: 24px 0 56px;
    }

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

    .activity-card-image {
        height: 200px;
    }

    .activity-description-preview {
        min-height: auto;
    }

    .activity-modal {
        padding: 16px;
    }

    .activity-modal-dialog {
        max-height: 88vh;
        border-radius: 22px;
    }

    .activity-modal-image-wrap {
        height: 200px;
    }

    .activity-modal-content {
        padding: 22px 20px 24px;
    }

    .pagination-nav {
        justify-content: center;
    }

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

    .contact-info-card,
    .contact-form-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contact-submit {
        width: 100%;
        justify-self: stretch;
    }

    .faq-item summary {
        padding: 20px 20px;
        padding-right: 58px;
        font-size: 1.05rem;
    }

    .faq-item summary::after {
        right: 18px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .content-card {
        padding: 22px;
    }

    .objective-icon-grid {
        grid-template-columns: 1fr;
    }

    .objective-icon-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .about-story-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .district-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .district-card {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .founder-message-section {
        padding: 56px 0 64px;
    }

    .founder-message-card {
        padding: 34px 22px 38px;
        border-radius: 22px;
    }

    .founder-quote {
        padding: 28px 0 0;
    }

    .founder-quote::before {
        left: 0;
        top: -8px;
    }

    .founder-quote::after {
        right: 0;
        bottom: -42px;
    }

    .founder-quote p {
        line-height: 1.75;
    }

    .who-we-are-section {
        padding: 56px 0 64px;
    }

    .club-message-section {
        padding: 56px 0 64px;
    }

    .board-section {
        padding: 56px 0 72px;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .who-we-are-copy {
        padding-right: 0;
    }

    .who-card {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .objectives-panel {
        margin-top: 22px;
        padding: 20px;
    }

    .club-message-showcase {
        grid-template-columns: 1fr;
    }

    .club-message-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .board-tree {
        gap: 18px;
    }

    .board-tree-row {
        gap: 18px;
    }

    .board-tree-connector {
        display: none;
    }

    .board-node {
        width: 100%;
        max-width: 360px;
        min-height: 320px;
        padding: 18px;
    }

    .board-detail {
        position: static;
        margin-top: 18px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}


.district-text {
    text-align: center;
}


.main-container p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #4b5b70;
}
