/* =========================
   GLOBAL
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}


/* =========================
   TOP HEADER
========================= */

.site-header {
    background: #f7f7f5;
    border-bottom: 1px solid #e5e5e2;
}

.navbar {
    width: min(1380px, 92%);
    height: 94px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    color: #111111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3.4rem);
}

.nav-links a {
    color: #181818;
    font-size: 0.91rem;
    font-weight: 400;
    text-decoration: none;
}

.nav-links a:hover {
    opacity: 0.55;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    display: none;

    width: 30px;
    height: 24px;

    padding: 0;

    background: none;
    border: none;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 1px;

    margin: 6px 0;

    background: #111111;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 600px;
    background: #06264a;
    color: #ffffff;

    display: flex;
    align-items: center;
}

.hero-content {
    width: min(1380px, 88%);
    margin: 0 auto;
    padding: 7rem 0;
}

.hero h1 {
    max-width: 950px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.3rem, 5.3vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero-line {
    width: 48px;
    height: 1px;

    margin: 2.7rem 0 2.5rem;

    background: rgba(255, 255, 255, 0.9);
}

.hero-description {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.91);

    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
}


/* =========================
   HOME GRID
========================= */

.home-grid {
    width: min(1420px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;

    padding: 5.5rem 0 6rem;
}

.home-column {
    min-width: 0;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-header {
    min-height: 46px;

    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.section-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2vw, 2.15rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-header a,
.bottom-link {
    color: #174d78;

    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;

    text-decoration: none;
}

.section-header a:hover,
.bottom-link:hover {
    text-decoration: underline;
}

.section-rule {
    width: 100%;
    height: 1px;

    margin: 1.4rem 0 0;

    background: #a9a9a9;
}

.item-rule {
    width: 100%;
    height: 1px;

    background: #dddddd;
}


/* =========================
   NEWS & UPDATES
========================= */

.news-item {
    padding: 1.7rem 0;
}

.news-date {
    margin-bottom: 0.7rem;

    color: #174d78;

    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.news-item h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.45;
}

.news-description {
    margin-top: 0.7rem;

    color: #666666;

    font-size: 0.78rem;
    line-height: 1.65;
}

/* =========================
   PUBLICATIONS
========================= */

.publication {
    padding: 1.9rem 0;
}

.publication h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.journal {
    margin-top: 0.45rem;

    color: #555555;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;
    font-style: italic;
}

.year-small {
    margin-top: 0.2rem;

    color: #555555;

    font-size: 0.75rem;
}


/* =========================
   RESEARCH
========================= */

.research {
    padding: 2rem 0;
}

.category {
    margin-bottom: 1.2rem;

    color: #174d78;

    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.research-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.research h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
}

.status {
    flex-shrink: 0;

    padding: 0.38rem 0.55rem;

    border: 1px solid #bcbcbc;
    border-radius: 2px;

    color: #333333;

    font-size: 0.61rem;
    font-weight: 500;
    letter-spacing: 0.03em;

    white-space: nowrap;
}

.bottom-link {
    display: inline-block;
    margin-top: 1.9rem;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #f2f2f1;
    border-top: 1px solid #e3e3e1;
}

.footer-inner {
    width: min(1420px, 92%);
    min-height: 230px;

    margin: 0 auto;
    padding: 3.2rem 0 2.6rem;

    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-identity strong {
    display: block;

    color: #111111;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.13em;
}

.footer-identity p {
    margin-top: 0.7rem;

    color: #444444;

    font-size: 0.76rem;
    line-height: 1.45;
}

.footer-line {
    width: 30px;
    height: 1px;

    margin: 1.1rem 0;

    background: #777777;
}

.footer-identity a {
    color: #333333;

    font-size: 0.75rem;

    text-decoration: none;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #222222;

    font-size: 0.72rem;

    text-decoration: none;
}

.footer-nav a:hover {
    opacity: 0.55;
}

.copyright {
    color: #444444;
    font-size: 0.72rem;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

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

    .home-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .navbar {
        height: 76px;
    }
   
   .menu-toggle {
       display: block;
   }
   
   .navbar {
       position: relative;
   }
   
   .nav-links {
       position: absolute;
   
       top: 76px;
       left: -6vw;
   
       width: 100vw;
   
       display: none;
       flex-direction: column;
       align-items: flex-start;
   
       gap: 0;
   
       padding: 1.2rem 6vw 1.5rem;
   
       background: #f7f7f5;
   
       border-top: 1px solid #e5e5e2;
       border-bottom: 1px solid #e5e5e2;
   
       z-index: 1000;
   }
   
   .nav-links.open {
       display: flex;
   }
   
   .nav-links a {
       width: 100%;
   
       padding: 0.9rem 0;
   
       color: #111111;
   
       font-size: 0.88rem;
   
       border-bottom: 1px solid #e1e1df;
   }
   
   .nav-links a:last-child {
       border-bottom: none;
   }


    .hero {
        min-height: 520px;
    }

    .hero-content {
        width: 88%;
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 11vw, 4rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .home-grid {
        width: 88%;

        grid-template-columns: 1fr;
        gap: 5rem;

        padding: 4rem 0;
    }

    .home-column:last-child {
        grid-column: auto;
    }

    .footer-inner {
        width: 88%;

        flex-direction: column;
    }

    .footer-right {
        align-items: flex-start;
        gap: 2.5rem;
    }

    .footer-nav {
        display: none;
    }
}

/* =========================
   ABOUT PAGE
========================= */

.page-hero {
    min-height: 300px;
    background: #06264a;
    color: #ffffff;

    display: flex;
    align-items: center;
}

.page-hero-content {
    width: min(1380px, 74%);
    margin: 0 auto;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.page-hero p {
    max-width: 600px;
    margin-top: 1.3rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.95rem;
    line-height: 1.7;
}


/* ABOUT CONTENT */

.about-main {
    width: min(1380px, 82%);
    margin: 0 auto;
}

.about-section {
    padding: 2.8rem 0;
    border-bottom: 1px solid #d7d7d7;
}

.about-number {
    color: #888888;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.about-content {
    width: 100%;
    max-width: 1200px;
}

.about-content h2 {
    margin-bottom: 1.5rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.about-content > p {
    max-width: 1100px;
    margin-bottom: 1rem;

    color: #555555;
    font-size: 0.98rem;
    line-height: 1.75;
}

/* SCOPE */

.scope-grid {
    width: 100%;
    max-width: 1100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 2rem;

    border-top: 1px solid #d7d7d7;
    border-left: 1px solid #d7d7d7;
}

.scope-grid div {
    padding: 1.2rem 1.4rem;

    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
}


/* HISTORY */

.timeline {
    width: 100%;
    max-width: 1100px;

    margin-top: 2.5rem;

    border-top: 1px solid #bdbdbd;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;

    padding: 1.6rem 0;

    border-bottom: 1px solid #d7d7d7;
}

.timeline-year {
    color: #06264a;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.timeline-description {
    color: #555555;

    font-size: 0.92rem;
    line-height: 1.7;
}


/* ACTIVE NAVIGATION */

.nav-links a.active {
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #111111;
}


/* ABOUT MOBILE */

@media (max-width: 760px) {

    .page-hero {
        min-height: 240px;
    }

    .page-hero-content,
    .about-main {
        width: 88%;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 1.2rem;

        padding: 4rem 0;
    }

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

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
}

/* =========================
   RESEARCH & PUBLICATIONS
========================= */

.research-main {
    width: min(1420px, 82%);
    margin: 0 auto;
    padding: 2.8rem 0 5rem;
}


/* MAJOR ACCORDION */

.major-accordion {
    border-bottom: 1px solid #cfcfcf;
}

.major-accordion:first-child {
    border-top: 1px solid #cfcfcf;
}

.major-accordion + .major-accordion {
    margin-top: 3.5rem;
}

.major-accordion summary {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
    list-style: none;
}

.major-accordion summary::-webkit-details-marker {
    display: none;
}

.accordion-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.025em;
}

.accordion-toggle {
    position: relative;

    width: 26px;
    height: 26px;

    flex-shrink: 0;
}

.accordion-toggle::before,
.accordion-toggle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 18px;
    height: 1px;

    background: #333333;

    transform: translate(-50%, -50%);
}

.accordion-toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.major-accordion[open] .accordion-toggle::after {
    display: none;
}

.accordion-content {
    padding-bottom: 1.8rem;
}


/* RESEARCH PROJECT */

.research-project {
    padding: 1.5rem 0;

    border-top: 1px solid #dddddd;
}

.research-project h2,
.publication-entry h2 {
    max-width: 1050px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 400;
    line-height: 1.35;
}

.research-meta {
    display: grid;

    grid-template-columns:
        minmax(300px, 2fr)
        minmax(120px, 0.7fr)
        minmax(180px, 1fr)
        minmax(120px, 0.7fr);

    gap: 2.5rem;

    margin-top: 1.1rem;
}

.meta-label {
    display: block;

    margin-bottom: 0.45rem;

    color: #777777;

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.research-meta p,
.publication-meta p {
    color: #454545;

    font-size: 0.9rem;
    line-height: 1.65;
}


/* PUBLICATIONS */

.publication-category {
    padding-top: 1.5rem;
}

.publication-category > h3 {
    margin-bottom: 0.8rem;

    color: #174d78;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.publication-entry {
    padding: 1.5rem 0;

    border-top: 1px solid #dddddd;
}

.publication-meta {
    display: grid;

    grid-template-columns:
        minmax(180px, 1fr)
        minmax(320px, 2fr)
        minmax(80px, 0.5fr)
        minmax(150px, 0.8fr);

    gap: 2.5rem;

    margin-top: 1.1rem;
}


/* MOBILE */

@media (max-width: 900px) {

    .research-meta,
    .publication-meta {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 760px) {

    .research-main {
        width: 88%;
    }

    .major-accordion summary {
        min-height: 85px;
    }

    .accordion-title {
        font-size: 2rem;
    }

    .research-meta,
    .publication-meta {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .research-project,
    .publication-entry {
        padding: 2rem 0;
    }
}

/* =========================
   MEMBERS & ADVISORS PAGE
========================= */

.members-main {
    width: min(1420px, 82%);
    margin: 0 auto;
    padding: 2.8rem 0 5rem;
}

.people-section {
    padding: 2.8rem 0;
    border-bottom: 1px solid #d2d2d2;
}

.people-section > h2 {
    margin-bottom: 1.6rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.025em;
}

.people-subsection > h3 {
    margin-bottom: 0.8rem;

    color: #174d78;

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


/* PERSON ROW */

.person-row {
    display: grid;

    grid-template-columns:
        minmax(200px, 1fr)
        minmax(300px, 1.5fr)
        minmax(350px, 2fr);

    gap: 3rem;

    padding: 1.5rem 0;

    border-top: 1px solid #dddddd;
}

.person-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    line-height: 1.45;
}

.person-label {
    display: block;

    margin-bottom: 0.35rem;

    color: #777777;

    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.person-row p {
    color: #4f4f4f;

    font-size: 0.88rem;
    line-height: 1.6;
}


/* MEMBER ACCORDIONS */

.member-accordion {
    border-top: 1px solid #d5d5d5;
}

.member-accordion:last-child {
    border-bottom: 1px solid #d5d5d5;
}

.member-accordion summary {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
    list-style: none;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.member-accordion summary::-webkit-details-marker {
    display: none;
}

.member-toggle {
    position: relative;

    width: 22px;
    height: 22px;

    flex-shrink: 0;
}

.member-toggle::before,
.member-toggle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 16px;
    height: 1px;

    background: #333333;

    transform: translate(-50%, -50%);
}

.member-toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.member-accordion[open] .member-toggle::after {
    display: none;
}

.member-list {
    padding-bottom: 1.2rem;
}


/* MOBILE */

@media (max-width: 900px) {

    .person-row {
        grid-template-columns: 1fr 1fr;
    }

    .person-name {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {

    .members-main {
        width: 88%;
    }

    .people-section {
        padding: 2.2rem 0;
    }

    .person-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .person-name {
        grid-column: auto;
    }

    .member-accordion summary {
        min-height: 66px;
    }
}

/* =========================
   JOIN IGUER
========================= */

.join-main {
    width: min(1420px, 82%);
    margin: 0 auto;
    padding-bottom: 5rem;
}

.join-section {
    padding: 3.2rem 0;
    border-bottom: 1px solid #d2d2d2;
}

.join-section-heading {
    max-width: 1100px;
    margin-bottom: 2rem;
}

.join-section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.join-section-heading > p {
    max-width: 850px;
    margin-top: 0.8rem;

    color: #666666;
    font-size: 0.9rem;
    line-height: 1.7;
}


/* MEMBERSHIP STRUCTURE */

.membership-levels {
    border-top: 1px solid #cfcfcf;
}

.membership-level {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(400px, 2.2fr);
    gap: 4rem;

    padding: 1.45rem 0;
    border-bottom: 1px solid #dddddd;
}

.membership-name h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 400;
}

.membership-description {
    max-width: 850px;
}

.membership-description p {
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.7;
}

.membership-note {
    max-width: 900px;
    margin-top: 1.5rem;

    color: #666666;
    font-size: 0.82rem;
    line-height: 1.7;
}


/* APPLICATION FORM */

.application-form {
    max-width: 1100px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.7rem 2.5rem;
}

.form-field {
    min-width: 0;
}

.form-wide {
    grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
    display: block;

    margin-bottom: 0.5rem;

    color: #222222;
    font-size: 0.78rem;
    font-weight: 600;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 0.85rem 0.9rem;

    background: #ffffff;
    border: 1px solid #cfcfcf;
    border-radius: 0;

    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;

    outline: none;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #06264a;
}

.field-description {
    margin-top: 0.45rem;

    color: #777777;
    font-size: 0.76rem;
    line-height: 1.6;
}


/* RADIO */

.radio-field {
    padding: 1.3rem 0;

    border: 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.radio-field legend {
    padding-top: 1rem;
}

.radio-options {
    display: flex;
    gap: 2rem;

    margin-top: 0.9rem;
}

.radio-options label {
    display: flex;
    align-items: center;
    gap: 0.45rem;

    margin: 0;

    font-weight: 400;
}


/* OPTIONAL */

.optional-heading {
    margin-top: 1rem;
    padding-top: 1.8rem;

    border-top: 1px solid #cfcfcf;
}

.optional-heading h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.optional-heading p {
    max-width: 850px;
    margin-top: 0.6rem;

    color: #666666;
    font-size: 0.82rem;
    line-height: 1.7;
}

.optional-label {
    margin-left: 0.5rem;

    color: #888888;
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* =========================
   MEMBERSHIP FEE NOTICE
========================= */

.membership-fee-notice {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #d8d8d5;
}

.membership-fee-notice h3 {
    margin: 0 0 0.6rem;

    font-size: 1rem;
    font-weight: 600;

    color: #111111;
}

.membership-fee-notice p {
    margin: 0 0 0.35rem;

    font-size: 0.9rem;
    line-height: 1.65;

    color: #666666;
}

.membership-fee-notice p:last-child {
    margin-bottom: 0;
}

.membership-fee-notice .fee-note {
    color: #666666;
}

/* =========================
   PRIVACY CONSENT
========================= */

.privacy-consent {
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid #d8d8d5;
}

.privacy-notice-button {
    padding: 0;

    background: none;
    border: none;

    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;

    color: #172a46;

    cursor: pointer;
}

.privacy-notice-button:hover {
    text-decoration: underline;
}

.privacy-notice {
    display: none;

    margin-top: 1.5rem;
    padding: 1.5rem;

    background: #f7f7f5;
    border: 1px solid #dededb;
}

.privacy-notice.open {
    display: block;
}

.privacy-notice h3 {
    margin: 0 0 1.5rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-weight: 500;

    color: #111111;
}

.privacy-block {
    margin-bottom: 1.3rem;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block h4 {
    margin: 0 0 0.4rem;

    font-size: 0.85rem;
    font-weight: 600;

    color: #222222;
}

.privacy-block p {
    margin: 0 0 0.7rem;

    font-size: 0.85rem;
    line-height: 1.65;

    color: #666666;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;

    gap: 0.7rem;

    margin-top: 1.4rem;

    font-size: 0.85rem;
    line-height: 1.55;

    color: #444444;

    cursor: pointer;
}

.privacy-checkbox input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* SUBMIT */

.form-submit {
    margin-top: 2.5rem;
}

.form-submit button {
    padding: 0.9rem 1.8rem;

    background: #06264a;
    border: 1px solid #06264a;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;

    cursor: pointer;
}

.form-submit button:hover {
    background: #ffffff;
    color: #06264a;
}

.form-submit p {
    max-width: 700px;
    margin-top: 0.9rem;

    color: #777777;
    font-size: 0.72rem;
    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 760px) {

    .join-main {
        width: 88%;
    }

    .join-section {
        padding: 2.5rem 0;
    }

    .membership-level {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

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

    .form-wide {
        grid-column: auto;
    }
}

/* =========================
   PRIVACY POLICY PAGE
========================= */

.privacy-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.privacy-section {
    padding: 0 0 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #d8d8d5;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    margin: 0 0 1.25rem;

    font-size: 1.25rem;
    font-weight: 600;

    color: #111111;
}

.privacy-section h3 {
    margin: 1.5rem 0 0.6rem;

    font-size: 0.95rem;
    font-weight: 600;

    color: #222222;
}

.privacy-section p,
.privacy-section li {
    font-size: 0.9rem;
    line-height: 1.7;

    color: #666666;
}

.privacy-section p {
    margin: 0 0 0.8rem;
}

.privacy-section ul {
    margin: 0.75rem 0 1rem;
    padding-left: 1.4rem;
}

.privacy-section li {
    margin-bottom: 0.35rem;
}

.privacy-section a {
    color: #173f70;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-effective {
    margin-top: 2rem !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .privacy-page {
        padding: 3rem 1.25rem 4rem;
    }

    .privacy-section {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
    }

}
