/* =========================================================
   RUANK - TENTANG KAMI
   Compact Reference Style
========================================================= */

:root {
    --cream: #f5f2e9;
    --cream-light: #faf9f5;
    --cream-dark: #ebe6d9;

    --olive: #737b62;
    --olive-dark: #59604c;
    --olive-light: #e7e9df;

    --green-dark: #06251b;
    --green: #0b3427;

    --text: #242722;
    --text-soft: #686b63;

    --white: #ffffff;

    --border: rgba(89, 96, 76, .14);

    --shadow:
        0 10px 30px rgba(40, 45, 34, .06);

    --shadow-hover:
        0 15px 35px rgba(40, 45, 34, .10);

    --radius-lg: 22px;
    --radius-md: 16px;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

.about-page {
    margin: 0;
    padding: 0;

    background: var(--cream-light);
    color: var(--text);

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    line-height: 1.6;
}

.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}

.about-page img {
    display: block;
    max-width: 100%;
}

.about-page a {
    text-decoration: none;
}

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    display: grid;
    grid-template-columns: 46% 54%;

    min-height: 610px;

    background: var(--cream);
}


/* LEFT */

.about-hero-content {
    display: flex;
    align-items: center;

    padding:
        55px clamp(35px, 5vw, 75px) 55px max(30px, calc((100vw - 1180px) / 2));
}

.about-hero-inner {
    width: 100%;
    max-width: 580px;
}


/* EYEBROW */

.eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--olive-dark);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* TITLE */

.about-hero h1 {
    margin: 0 0 20px;

    color: var(--text);

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 700;

    line-height: 1.12;
    letter-spacing: -1.8px;
}

.about-hero h1 em {
    color: var(--olive);

    font-style: normal;
}


/* LINE */

.hero-line {
    width: 45px;
    height: 2px;

    margin-bottom: 20px;

    background: var(--olive);
}


/* DESCRIPTION */

.about-hero p {
    max-width: 540px;

    margin: 0 0 10px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.75;
}


/* FEATURES */

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 23px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;

    gap: 9px;
}

.feature-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(115, 123, 98, .13);

    color: var(--olive-dark);

    font-size: 13px;
}

.hero-feature strong {
    display: block;

    margin-bottom: 2px;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.35;
}

.hero-feature span {
    display: block;

    color: var(--text-soft);

    font-size: 9.5px;

    line-height: 1.45;
}


/* BUTTON */

.hero-button {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 25px;

    padding: 11px 18px;

    border-radius: 10px;

    background: var(--olive);

    color: white !important;

    font-size: 11px;
    font-weight: 600;

    transition: .25s ease;
}

.hero-button:hover {
    background: var(--olive-dark);

    transform: translateY(-2px);
}

.hero-button i {
    transition: transform .25s ease;
}

.hero-button:hover i {
    transform: translateX(3px);
}


/* =========================================================
   HERO IMAGE
========================================================= */

.about-hero-image {
    position: relative;

    min-height: 610px;

    overflow: hidden;
}

.about-hero-image>img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* QUOTE */

.hero-quote {
    position: absolute;

    left: 7%;
    right: 7%;
    bottom: 28px;

    padding: 19px 22px;

    border-radius: 14px;

    background: rgba(89, 96, 76, .92);

    color: white;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .12);
}

.quote-mark {
    display: block;

    margin-bottom: 0;

    color: #d8c98d;

    font-family: Georgia, serif;

    font-size: 35px;

    line-height: .65;
}

.hero-quote p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, .9);

    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.about-section,
.vision-section,
.why-section,
.workflow-section {
    padding: 75px 0;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--cream-light);
}

.about-grid {
    display: grid;

    grid-template-columns: 48% 52%;

    gap: 50px;

    align-items: center;
}


/* IMAGE */

.about-image {
    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 450px;

    object-fit: cover;

    transition: transform .45s ease;
}

.about-image:hover img {
    transform: scale(1.025);
}


/* CONTENT */

.about-content {
    padding: 5px 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 15px;

    padding: 7px 12px;

    border-radius: 999px;

    background: var(--olive-light);

    color: var(--olive-dark);

    font-size: 10px;
    font-weight: 700;
}

.about-content h2 {
    max-width: 520px;

    margin: 0 0 17px;

    color: var(--text);

    font-size: 36px;
    font-weight: 700;

    line-height: 1.18;

    letter-spacing: -1px;
}

.about-content h2 span {
    display: block;

    color: var(--olive);
}

.about-content p {
    max-width: 570px;

    margin: 0 0 11px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.75;
}


/* LIST */

.about-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px 20px;

    margin: 22px 0;
}

.about-item {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--text);

    font-size: 11px;
    font-weight: 600;
}

.about-item i {
    color: var(--olive);

    font-size: 13px;
}


/* OUTLINE BUTTON */

.outline-button {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 10px 16px;

    border: 1px solid var(--olive);

    border-radius: 10px;

    color: var(--olive-dark) !important;

    font-size: 11px;
    font-weight: 600;

    transition: .25s ease;
}

.outline-button:hover {
    background: var(--olive);

    color: white !important;

    transform: translateY(-2px);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    margin-bottom: 35px;
}

.section-heading.center {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.small-label {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--olive-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0 0 10px;

    color: var(--text);

    font-size: 36px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -1px;
}

.section-heading h2 span {
    color: var(--olive);
}

.section-heading p {
    margin: 0;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   VISI MISI
========================================================= */

.vision-section {
    background: #eeece5;
}

.vision-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.vision-card {
    padding: 28px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: rgba(255, 255, 255, .72);

    box-shadow: var(--shadow);

    transition: .3s ease;
}

.vision-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: var(--olive);

    color: white;

    font-size: 16px;
}

.vision-card h3 {
    margin: 0 0 9px;

    color: var(--text);

    font-size: 21px;
    font-weight: 700;
}

.vision-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   WHY RUANK
========================================================= */

.why-section {
    background: var(--cream-light);
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.why-card {
    min-height: 205px;

    padding: 24px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: white;

    box-shadow: var(--shadow);

    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-hover);
}

.why-card .card-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 16px;

    border-radius: 11px;

    background: var(--olive-light);

    color: var(--olive-dark);

    font-size: 15px;
}

.why-card h3 {
    margin: 0 0 7px;

    color: var(--text);

    font-size: 17px;
    font-weight: 700;

    line-height: 1.35;
}

.why-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   WORKFLOW
========================================================= */

.workflow-section {
    background: #f0eee7;
}

.workflow-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.workflow-heading>p {
    max-width: 260px;

    margin: 0 0 4px;

    color: var(--text-soft);

    text-align: right;

    font-size: 11px;

    line-height: 1.65;
}

.workflow-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.workflow-card {
    position: relative;

    min-height: 240px;

    padding: 24px 21px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: white;

    box-shadow: var(--shadow);

    transition: .3s ease;
}

.workflow-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-hover);
}

.workflow-number {
    position: absolute;

    top: 17px;
    right: 18px;

    color: #d9d8cf;

    font-size: 21px;
    font-weight: 700;
}

.workflow-card .card-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 16px;

    border-radius: 11px;

    font-size: 14px;
}

.workflow-card h3 {
    max-width: 190px;

    margin: 0 0 8px;

    color: var(--text);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.4;
}

.workflow-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 10.5px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 50px 0;

    background: var(--cream-light);
}

.cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 28px 32px;

    border-radius: 19px;

    background: var(--green-dark);

    box-shadow:
        0 15px 35px rgba(6, 37, 27, .12);
}

.cta-left {
    display: flex;
    align-items: center;

    gap: 15px;
}

.cta-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--olive);

    color: white;

    font-size: 17px;
}

.cta-left span {
    display: block;

    margin-bottom: 2px;

    color: #aeb4a4;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.cta-left h2 {
    margin: 0;

    color: white;

    font-size: 22px;
    font-weight: 700;

    line-height: 1.3;
}

.cta-button {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 11px 17px;

    border-radius: 10px;

    background: #f5f3eb;

    color: var(--olive-dark) !important;

    white-space: nowrap;

    font-size: 11px;
    font-weight: 700;

    transition: .25s ease;
}

.cta-button:hover {
    background: white;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .about-hero {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero-content {
        padding-left: 35px;
        padding-right: 35px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-feature span {
        font-size: 9px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 850px) {

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-hero-content {
        padding: 60px 30px;
    }

    .about-hero-image {
        min-height: 450px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-image img {
        height: 380px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-heading {
        flex-direction: column;

        align-items: flex-start;
    }

    .workflow-heading>p {
        text-align: left;
    }

}


@media (max-width: 600px) {

    .container {
        width: min(100% - 30px, var(--container));
    }

    .about-hero-content {
        padding: 50px 20px;
    }

    .about-hero h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .about-hero p {
        font-size: 12px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        min-height: 400px;
    }

    .hero-quote {
        left: 20px;
        right: 20px;
        bottom: 20px;

        padding: 17px;
    }

    .about-section,
    .vision-section,
    .why-section,
    .workflow-section {
        padding: 55px 0;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .about-content h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .vision-grid,
    .why-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-card {
        min-height: auto;
    }

    .cta-section {
        padding: 35px 0;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px 22px;
    }

    .cta-button {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   RUANK - SYARAT & KETENTUAN
   Compact Reference Style
========================================================= */

:root {
    --cream: #f5f2e9;
    --cream-light: #faf9f5;
    --cream-dark: #ebe6d9;

    --olive: #737b62;
    --olive-dark: #59604c;
    --olive-light: #e7e9df;

    --green-dark: #06251b;
    --green: #0b3427;

    --text: #242722;
    --text-soft: #686b63;

    --white: #ffffff;

    --border: rgba(89, 96, 76, .14);

    --shadow:
        0 8px 25px rgba(40, 45, 34, .05);

    --shadow-hover:
        0 12px 30px rgba(40, 45, 34, .08);

    --radius-lg: 22px;
    --radius-md: 16px;

    --container: 1120px;
}


/* =========================================================
   RESET
========================================================= */

.terms-page {
    margin: 0;
    padding: 0;

    background: var(--cream-light);
    color: var(--text);

    font-family: "Poppins", sans-serif;

    font-size: 13px;
    line-height: 1.7;
}

.terms-page *,
.terms-page *::before,
.terms-page *::after {
    box-sizing: border-box;
}

.terms-page a {
    text-decoration: none;
}

.container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}


/* =========================================================
   HERO
========================================================= */

.terms-hero {
    background: var(--cream);

    padding: 65px 0 55px;

    border-bottom: 1px solid var(--border);
}

.terms-hero-inner {
    max-width: 720px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--olive-dark);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.terms-hero h1 {
    margin: 0 0 16px;

    color: var(--text);

    font-size: clamp(38px, 4vw, 54px);
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.terms-hero h1 span {
    color: var(--olive);
}

.terms-hero p {
    max-width: 650px;

    margin: 0;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.8;
}


/* META */

.terms-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 24px;
}

.terms-meta div {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border: 1px solid rgba(89, 96, 76, .18);

    border-radius: 999px;

    background: rgba(255, 255, 255, .45);

    color: var(--olive-dark);

    font-size: 10px;
    font-weight: 600;
}

.terms-meta i {
    font-size: 11px;
}


/* =========================================================
   CONTENT
========================================================= */

.terms-content {
    padding: 55px 0 75px;

    background: var(--cream-light);
}

.terms-layout {
    display: grid;

    grid-template-columns: 230px minmax(0, 1fr);

    gap: 45px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.terms-sidebar {
    position: sticky;

    top: 25px;
}

.terms-nav {
    padding: 20px;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    background: white;

    box-shadow: var(--shadow);
}

.terms-nav-title {
    display: block;

    margin-bottom: 12px;

    color: var(--olive-dark);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.terms-nav a {
    display: block;

    padding: 6px 0;

    color: var(--text-soft);

    font-size: 9.5px;

    line-height: 1.45;

    transition: .2s ease;
}

.terms-nav a:hover {
    padding-left: 4px;

    color: var(--olive);
}


/* =========================================================
   MAIN TERMS
========================================================= */

.terms-main {
    min-width: 0;
}


/* =========================================================
   TERM SECTION
========================================================= */

.term-section {
    position: relative;

    display: grid;

    grid-template-columns: 48px minmax(0, 1fr);

    gap: 18px;

    margin-bottom: 16px;

    padding: 27px 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    background: white;

    box-shadow: var(--shadow);

    scroll-margin-top: 25px;

    transition: .25s ease;
}

.term-section:hover {
    box-shadow: var(--shadow-hover);
}


/* NUMBER */

.term-number {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--olive-light);

    color: var(--olive-dark);

    font-size: 10px;
    font-weight: 700;
}


/* BODY */

.term-body {
    min-width: 0;
}

.term-label {
    display: block;

    margin-bottom: 5px;

    color: var(--olive-dark);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.7px;
}

.term-body h2 {
    margin: 0 0 12px;

    color: var(--text);

    font-size: 21px;
    font-weight: 700;

    line-height: 1.35;

    letter-spacing: -.3px;
}

.term-body p {
    margin: 0 0 11px;

    color: var(--text-soft);

    font-size: 11.5px;

    line-height: 1.8;
}

.term-body p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.term-body ul,
.term-body ol {
    margin: 10px 0 0;

    padding-left: 18px;

    color: var(--text-soft);

    font-size: 11.5px;

    line-height: 1.8;
}

.term-body li {
    padding-left: 3px;

    margin-bottom: 3px;
}

.term-body ul li::marker {
    color: var(--olive);
}

.term-body ol li::marker {
    color: var(--olive-dark);

    font-weight: 700;
}


/* =========================================================
   NOTE
========================================================= */

.term-note {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 17px;

    padding: 13px 15px;

    border-radius: 11px;

    background: #f4f5ef;
}

.term-note i {
    margin-top: 3px;

    color: var(--olive);

    font-size: 12px;
}

.term-note p {
    margin: 0;

    color: var(--olive-dark);

    font-size: 10.5px;

    line-height: 1.7;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.term-highlight {
    margin-top: 16px;

    padding: 13px 15px;

    border-left: 3px solid var(--olive);

    border-radius: 0 10px 10px 0;

    background: var(--olive-light);

    color: var(--olive-dark);

    font-size: 11px;
    font-weight: 600;

    line-height: 1.7;
}


/* =========================================================
   WARNING / ANTI-BYPASS
========================================================= */

.term-warning {
    border-color: rgba(115, 123, 98, .28);

    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f5f6f0 100%);
}

.term-warning .term-number {
    background: var(--olive);

    color: white;
}


/* =========================================================
   RESPONSIBILITY
========================================================= */

.sub-title {
    margin-top: 22px !important;

    margin-bottom: 5px !important;

    color: var(--text) !important;

    font-size: 11px !important;
    font-weight: 700 !important;
}

.responsibility-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin: 17px 0 5px;
}

.responsibility-card {
    padding: 15px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: var(--cream-light);
}

.responsibility-card>i {
    margin-bottom: 8px;

    color: var(--olive);

    font-size: 15px;
}

.responsibility-card strong {
    display: block;

    margin-bottom: 3px;

    color: var(--text);

    font-size: 11px;
}

.responsibility-card p {
    margin: 0;

    font-size: 10px;

    line-height: 1.65;
}


/* =========================================================
   CHECK LIST
========================================================= */

.check-list {
    list-style: none;

    padding-left: 0 !important;
}

.check-list li {
    position: relative;

    padding-left: 21px !important;
}

.check-list li::before {
    content: "\f058";

    position: absolute;

    left: 0;
    top: 3px;

    color: var(--olive);

    font-family: "Font Awesome 6 Free";

    font-size: 12px;

    font-weight: 900;
}


/* =========================================================
   CLOSING
========================================================= */

.terms-closing {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 28px;

    padding: 27px 30px;

    border-radius: var(--radius-lg);

    background: var(--green-dark);

    color: white;

    box-shadow:
        0 15px 35px rgba(6, 37, 27, .12);
}

.closing-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--olive);

    color: white;

    font-size: 16px;
}

.terms-closing span {
    display: block;

    margin-bottom: 3px;

    color: #aeb4a4;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.terms-closing h2 {
    margin: 0 0 5px;

    color: white;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.35;
}

.terms-closing p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 10.5px;

    line-height: 1.7;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .terms-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .terms-sidebar {
        position: static;
    }

    .terms-nav {
        display: flex;

        flex-wrap: wrap;

        gap: 4px 14px;

        padding: 16px;
    }

    .terms-nav-title {
        width: 100%;
    }

    .terms-nav a {
        padding: 3px 0;
    }

}


@media (max-width: 650px) {

    .container {
        width: min(100% - 30px, var(--container));
    }

    .terms-hero {
        padding: 48px 0 42px;
    }

    .terms-hero h1 {
        font-size: 36px;
    }

    .terms-hero p {
        font-size: 12px;
    }

    .terms-content {
        padding: 35px 0 55px;
    }

    .term-section {
        grid-template-columns: 1fr;

        gap: 12px;

        padding: 22px 20px;
    }

    .term-number {
        width: 34px;
        height: 34px;
    }

    .term-body h2 {
        font-size: 19px;
    }

    .term-body p,
    .term-body ul,
    .term-body ol {
        font-size: 11px;
    }

    .responsibility-grid {
        grid-template-columns: 1fr;
    }

    .terms-closing {
        align-items: flex-start;

        padding: 23px 20px;
    }

}



