.header-logo img
{
    border-radius: 20px;
}
/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 25%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common Button Style */
.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 23px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    /* Fade animation */
    animation: fadePulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Call Button */
.call-btn {
    background: #007bff;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

/* Hover Effect */
.floating-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    color: #fff !important;
}

/* Fade In / Fade Out + Pulse */
@keyframes fadePulse {
    0% {
        opacity: 0.65;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.65;
        transform: scale(0.95);
    }
}

/* Mobile */
@media (max-width: 575px) {

    .floating-contact {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}



/* =========================================
   HOME TUITION LOCATIONS
========================================= */

.rs-location-area {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
    background: #050505;
    overflow: hidden;
}

/* Section Heading */

.rs-location-area .rs-section-title {
    margin-bottom: 50px;
}

.rs-location-area .rs-subtitle {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f5b400;
}

.rs-location-area .rs-title {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.rs-location-area .rs-title span {
    color: #f5b400;
}

.rs-location-area .rs-section-title p {
    max-width: 850px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.8;
}

.rs-location-area .rs-section-title strong {
    color: #f5b400;
}


/* Location List */

.rs-location-list {
    margin-left: 0;
    margin-right: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.025);
}


/* Location Item */

.rs-location-item {
    min-height: 85px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-right: 1px dashed rgba(255, 255, 255, 0.15);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.rs-location-item:hover {
    background: rgba(245, 180, 0, 0.08);
    transform: translateY(-2px);
}

.rs-location-item > span:last-child {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}


/* Location Icon */

.rs-location-icon {
    min-width: 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 180, 0, 0.12);
    color: #f5b400;
    font-size: 22px;
    transition: all 0.3s ease;
}

.rs-location-item:hover .rs-location-icon {
    background: #f5b400;
    color: #050505;
}


/* Bottom CTA */

.rs-location-cta {
    margin-top: 30px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid rgba(245, 180, 0, 0.25);
    border-radius: 14px;
    background: rgba(245, 180, 0, 0.04);
}

.rs-location-cta p {
    margin: 0;
    color: #d5d5d5;
    font-size: 16px;
}

.rs-location-cta strong {
    color: #f5b400;
}


/* CTA Icon */

.rs-location-cta-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f5b400;
    border-radius: 50%;
    color: #f5b400;
    font-size: 23px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .rs-location-area {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .rs-location-area .rs-title {
        font-size: 36px;
    }

    .rs-location-item {
        padding: 18px 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .rs-location-area {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .rs-location-area .rs-section-title {
        margin-bottom: 35px;
    }

    .rs-location-area .rs-title {
        font-size: 30px;
    }

    .rs-location-area .rs-section-title p {
        font-size: 15px;
        line-height: 1.7;
    }

    .rs-location-list {
        border-radius: 12px;
    }

    .rs-location-item {
        min-height: 70px;
        padding: 15px;
        gap: 10px;
        border-right: none;
    }

    .rs-location-item > span:last-child {
        font-size: 14px;
    }

    .rs-location-icon {
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .rs-location-cta {
        padding: 18px 15px;
        gap: 12px;
    }

    .rs-location-cta p {
        font-size: 14px;
        line-height: 1.6;
    }

    .rs-location-cta-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .rs-location-area .rs-title {
        font-size: 26px;
    }

    .rs-location-area .rs-subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .rs-location-item {
        min-height: 65px;
        padding: 13px 12px;
    }

    .rs-location-item > span:last-child {
        font-size: 13px;
    }

    .rs-location-icon {
        min-width: 32px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

}

/*-------------blog css--------*/

/* ========================================
   ADMIN BLOG
======================================== */
/* ========================================
   BLOG CONTENT BUILDER
======================================== */
/* ========================================
   ADMIN BLOG
======================================== */

.admin-blog-area {
    padding: 50px 0;
    background: #f5f6f8;
    min-height: 100vh;
}

.admin-blog-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
}


/* Header */

.admin-blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9e9e9;
}

.admin-blog-header h2 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
    color: #171717;
}

.admin-blog-header p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* Back Button */

.admin-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.admin-back-btn:hover {
    background: #171717;
    color: #fff;
    border-color: #171717;
}


/* Form */

.admin-form-group {
    margin-bottom: 25px;
}

.admin-form-group label {
    display: block;
    margin-bottom: 9px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
}


/* Input */

.admin-input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    background: #fff;
    color: #222;
    font-size: 15px;
    transition: 0.3s;
}

.admin-input:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}


/* URL */

.url-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.url-prefix {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #f5f5f5;
    color: #777;
    font-size: 14px;
    border-right: 1px solid #ddd;
}

.url-input-wrapper .admin-input {
    border: 0;
    border-radius: 0;
}

.url-input-wrapper .admin-input:focus {
    box-shadow: none;
}

.admin-form-group small {
    display: block;
    margin-top: 7px;
    color: #888;
    font-size: 12px;
}


/* File */

.admin-file {
    width: 100%;
    height: 50px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
}


/* Textarea */

.admin-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    resize: vertical;
    min-height: 350px;
    outline: none;
    font-size: 15px;
    line-height: 1.7;
}

.admin-textarea:focus {
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}


/* Actions */

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
}

.admin-cancel-btn,
.admin-save-btn {
    height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.admin-cancel-btn {
    color: #555;
    background: #f1f1f1;
}

.admin-cancel-btn:hover {
    background: #e5e5e5;
    color: #222;
}

.admin-save-btn {
    border: 0;
    background: #111;
    color: #fff;
}

.admin-save-btn:hover {
    background: #333;
}


/* Responsive */

@media (max-width: 767px) {

    .admin-blog-area {
        padding: 25px 0;
    }

    .admin-blog-wrapper {
        padding: 22px 18px;
    }

    .admin-blog-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-blog-header h2 {
        font-size: 24px;
    }

    .admin-form-actions {
        justify-content: stretch;
        flex-direction: column-reverse;
    }

    .admin-cancel-btn,
    .admin-save-btn {
        width: 100%;
    }

}
.blog-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-content-header label {
    margin-bottom: 5px;
}

.blog-content-header p {
    margin: 0;
    color: #888;
    font-size: 13px;
}

.section-count {
    background: #f1f1f1;
    padding: 7px 12px;
    border-radius: 5px;
    font-size: 13px;
    color: #555;
    white-space: nowrap;
}


/* Section */

.blog-section-item {
    position: relative;
    padding: 25px;
    margin-bottom: 18px;
    background: #fafafa;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-section-item:hover {
    border-color: #cfcfcf;
}


/* Section Header */

.blog-section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.blog-section-number {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}


/* Remove */

.remove-section {
    border: 0;
    background: transparent;
    color: #dc3545;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    transition: 0.3s;
}

.remove-section:hover {
    color: #a71d2a;
}


/* Add Section */

.add-section-btn {
    width: 100%;
    min-height: 52px;
    border: 2px dashed #d4d4d4;
    border-radius: 7px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.add-section-btn:hover {
    border-color: #111;
    background: #f8f8f8;
}


/* Mobile */

@media (max-width: 767px) {

    .blog-content-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-section-item {
        padding: 18px;
    }

    .blog-section-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

}


/*------admin blog end ------------*/

/*----------------seo page links below footer------------*/

 /* =========================================
    SEO LINKS SECTION
    Place below existing website footer
 ========================================= */

.seo-links-section {
    position: relative;

    padding: 45px 0 50px;

    background: #f5f8fb;

    border-top: 1px solid #e2e8ef;
}


/* -----------------------------------------
   HEADER
----------------------------------------- */

.seo-links-header {
    margin-bottom: 32px;

    text-align: center;
}


.seo-links-header h2 {
    margin: 0 0 8px;

    color: #163a5f;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.4;
}


.seo-links-header p {
    max-width: 700px;

    margin: 0 auto;

    color: #64748b;

    font-size: 14px;

    line-height: 1.7;
}


/* -----------------------------------------
   GRID
----------------------------------------- */

.seo-links-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


/* -----------------------------------------
   LINK GROUP
----------------------------------------- */

.seo-link-group {
    padding: 24px;

    background: #ffffff;

    border: 1px solid #e1e8ef;

    border-radius: 12px;

    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.seo-link-group:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(20, 55, 90, 0.07);
}


/* -----------------------------------------
   GROUP HEADING
----------------------------------------- */

.seo-link-group h3 {
    position: relative;

    margin: 0 0 18px;

    padding-bottom: 11px;

    color: #163a5f;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.4;
}


.seo-link-group h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: #2f80ed;

    border-radius: 10px;
}


/* -----------------------------------------
   LIST
----------------------------------------- */

.seo-link-group ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.seo-link-group li {
    margin: 0 0 9px;

    padding: 0;
}


/* -----------------------------------------
   LINKS
----------------------------------------- */

.seo-link-group a {
    position: relative;

    display: inline-block;

    padding-left: 15px;

    color: #526477;

    font-size: 13.5px;

    line-height: 1.6;

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.seo-link-group a::before {
    content: "›";

    position: absolute;

    left: 0;
    top: 0;

    color: #2f80ed;

    font-size: 17px;

    line-height: 1.45;
}


.seo-link-group a:hover {
    padding-left: 19px;

    color: #163a5f;
}


/* -----------------------------------------
   TABLET
----------------------------------------- */

@media (max-width: 991px) {

    .seo-links-section {
        padding: 40px 0;
    }


    .seo-links-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

}


/* -----------------------------------------
   MOBILE
----------------------------------------- */

@media (max-width: 767px) {

    .seo-links-section {
        padding: 35px 15px 40px;
    }


    .seo-links-header {
        margin-bottom: 25px;
    }


    .seo-links-header h2 {
        font-size: 21px;
    }


    .seo-links-header p {
        font-size: 13.5px;
    }


    .seo-links-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .seo-link-group {
        padding: 20px;
    }


    .seo-link-group h3 {
        font-size: 16px;
    }


    .seo-link-group a {
        font-size: 13.5px;
    }

}

  /* -------------------------
   MAIN SEO CONTENT WRAPPER
------------------------- */

/*
   Add this class to the main wrapper around
   your existing content:

   <main class="seo-content-page">
       YOUR EXISTING CONTENT
   </main>
*/

.seo-content-page {
    width: 100%;
    max-width: var(--cht-max-width);
    margin: 0 auto;
    padding: 60px 25px 90px;

    color: var(--cht-text);

    font-family:
        "Inter",
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    line-height: 1.8;
}


/* -------------------------
   GENERAL SECTIONS
------------------------- */

.seo-content-page section {
    position: relative;

    background: var(--cht-white);

    margin-bottom: 28px;
    padding: 38px 40px;

    border: 1px solid rgba(220, 230, 239, 0.9);
    border-radius: var(--cht-radius);

    box-shadow: var(--cht-shadow);

    overflow: hidden;
}


/*
   Decorative top line
*/

.seo-content-page section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--cht-primary),
            var(--cht-secondary),
            var(--cht-accent)
        );
}


/* -------------------------
   HERO SECTION
------------------------- */

.seo-content-page > section:first-child {
    padding: 55px 50px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5faff 55%,
            #eef7f4 100%
        );

    border: none;

    box-shadow:
        0 20px 55px rgba(15, 45, 75, 0.10);
}


/* Hero H1 */

.seo-content-page > section:first-child h1 {
    max-width: 950px;

    margin: 0 0 24px;

    color: var(--cht-primary);

    font-size: clamp(30px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.18;

    letter-spacing: -0.8px;
}


/* Direct Answer Paragraph */

.seo-content-page > section:first-child > p:first-of-type {
    max-width: 1000px;

    margin: 0 0 30px;

    padding: 22px 25px;

    background: rgba(255, 255, 255, 0.75);

    border-left: 5px solid var(--cht-secondary);

    border-radius: 12px;

    color: #34495e;

    font-size: 17px;

    line-height: 1.85;

    box-shadow:
        0 8px 25px rgba(30, 70, 110, 0.06);
}


/* Hero second heading */

.seo-content-page > section:first-child h2 {
    margin-top: 30px;
}


/* -------------------------
   HEADINGS
------------------------- */

.seo-content-page h2 {
    position: relative;

    margin: 0 0 22px;

    padding-bottom: 14px;

    color: var(--cht-primary);

    font-size: clamp(25px, 3vw, 34px);

    font-weight: 750;

    line-height: 1.3;
}


/*
   Small underline below H2
*/

.seo-content-page h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin-top: 12px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--cht-secondary),
            var(--cht-accent)
        );
}


.seo-content-page h3 {
    margin: 32px 0 14px;

    color: var(--cht-primary-dark);

    font-size: 21px;

    font-weight: 700;

    line-height: 1.45;
}


.seo-content-page p {
    margin: 0 0 20px;

    color: var(--cht-text);

    font-size: 16px;

    line-height: 1.85;
}


/* -------------------------
   STRONG TEXT
------------------------- */

.seo-content-page strong {
    color: var(--cht-primary-dark);

    font-weight: 700;
}


/* -------------------------
   HORIZONTAL RULE
------------------------- */

.seo-content-page hr {
    height: 1px;

    margin: 35px 0;

    border: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--cht-border),
            transparent
        );
}


/* -------------------------
   TABLE OF CONTENTS
------------------------- */

.seo-content-page > nav {
    position: relative;

    margin: 30px 0;

    padding: 32px 35px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef6ff
        );

    border: 1px solid #d8e7f5;

    border-radius: var(--cht-radius);

    box-shadow:
        0 10px 30px rgba(30, 70, 110, 0.06);
}


/*
   TOC heading using pseudo element
   so no HTML content needs to change
*/

.seo-content-page > nav::before {
    content: "On This Page";

    display: block;

    margin-bottom: 18px;

    color: var(--cht-primary);

    font-size: 20px;

    font-weight: 750;
}


.seo-content-page > nav ul {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px 20px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.seo-content-page > nav li {
    margin: 0;
}


.seo-content-page > nav a {
    position: relative;

    display: block;

    padding: 13px 16px 13px 42px;

    color: var(--cht-primary);

    background: rgba(255, 255, 255, 0.8);

    border: 1px solid transparent;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}


.seo-content-page > nav a::before {
    content: "→";

    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--cht-secondary);

    font-weight: 800;
}


.seo-content-page > nav a:hover {
    color: var(--cht-secondary);

    background: #ffffff;

    border-color: #cbdff2;

    transform: translateX(4px);
}


/* -------------------------
   CONTENT LISTS
------------------------- */

.seo-content-page section ul {
    margin: 20px 0 5px;

    padding: 0;

    list-style: none;
}


.seo-content-page section li {
    position: relative;

    margin-bottom: 15px;

    padding: 17px 20px 17px 52px;

    background: #f8fafc;

    border: 1px solid #e7edf3;

    border-radius: 12px;

    color: #37474f;

    font-size: 15.8px;

    line-height: 1.75;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.seo-content-page section li::before {
    content: "✓";

    position: absolute;

    left: 18px;
    top: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--cht-secondary),
            var(--cht-accent)
        );

    border-radius: 50%;

    font-size: 12px;

    font-weight: 800;
}


.seo-content-page section li:hover {
    transform: translateY(-2px);

    border-color: #cbdceb;

    box-shadow:
        0 8px 25px rgba(25, 65, 100, 0.07);
}


/* -------------------------
   SYLLABUS HEADINGS
------------------------- */

#syllabus-breakdown h3 {
    position: relative;

    margin-top: 38px;

    padding: 15px 18px;

    background:
        linear-gradient(
            90deg,
            #f0f7ff,
            #ffffff
        );

    border-left: 4px solid var(--cht-secondary);

    border-radius: 8px;

    color: var(--cht-primary);

    font-size: 20px;
}


/* -------------------------
   COURSES SECTION
------------------------- */

#courses li {
    padding-top: 20px;
    padding-bottom: 20px;
}


#courses li strong {
    display: inline-block;

    margin-bottom: 3px;
}


/* -------------------------
   LOCATION / SECTORS
------------------------- */

#sectors {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f5fbfa
        );
}


#sectors li {
    background: rgba(255, 255, 255, 0.85);
}


/* -------------------------
   FAQ SECTION
------------------------- */

#faq h3 {
    position: relative;

    margin-top: 20px;
    margin-bottom: 0;

    padding: 20px 25px;

    background:
        linear-gradient(
            135deg,
            #f7faff,
            #ffffff
        );

    border: 1px solid #dfe8f0;

    border-radius: 12px 12px 0 0;

    color: var(--cht-primary);

    font-size: 18px;

    line-height: 1.5;
}


#faq h3::before {
    content: "?";

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    margin-right: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--cht-secondary),
            var(--cht-primary)
        );

    border-radius: 50%;

    font-size: 15px;

    font-weight: 800;

    vertical-align: middle;
}


#faq h3 + p {
    margin: 0 0 20px;

    padding: 20px 25px;

    background: #ffffff;

    border: 1px solid #dfe8f0;

    border-top: none;

    border-radius: 0 0 12px 12px;

    color: #4b5d6b;

    font-size: 15.5px;
}


/* -------------------------
   FAQ LINK
------------------------- */

#faq a {
    color: var(--cht-secondary);

    font-weight: 700;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}


#faq a:hover {
    color: var(--cht-primary);

    border-bottom-color: var(--cht-primary);
}


/* -------------------------
   FIRST SECTION SPECIAL TEXT
------------------------- */

.seo-content-page section:first-child p:last-child {
    margin-bottom: 0;
}


/* -------------------------
   TEXT SELECTION
------------------------- */

.seo-content-page ::selection {
    color: #ffffff;

    background: var(--cht-primary);
}


/* -------------------------
   DESKTOP ENHANCEMENT
------------------------- */

@media (min-width: 992px) {

    .seo-content-page > nav {
        position: sticky;

        top: 20px;

        z-index: 5;
    }

}


/* -------------------------
   TABLET
------------------------- */

@media (max-width: 991px) {

    .seo-content-page {
        padding: 45px 20px 70px;
    }


    .seo-content-page section {
        padding: 32px 28px;
    }


    .seo-content-page > section:first-child {
        padding: 42px 32px;
    }


    .seo-content-page > nav ul {
        grid-template-columns: 1fr;
    }

}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 767px) {

    .seo-content-page {
        padding: 30px 14px 55px;

        line-height: 1.7;
    }


    .seo-content-page section {
        margin-bottom: 20px;

        padding: 28px 20px;

        border-radius: 15px;
    }


    .seo-content-page > section:first-child {
        padding: 32px 20px;
    }


    /* H1 */

    .seo-content-page > section:first-child h1 {
        margin-bottom: 20px;

        font-size: 30px;

        line-height: 1.22;

        letter-spacing: -0.4px;
    }


    /* Direct answer */

    .seo-content-page > section:first-child > p:first-of-type {
        padding: 18px 17px;

        font-size: 15.5px;

        line-height: 1.75;
    }


    /* H2 */

    .seo-content-page h2 {
        margin-bottom: 18px;

        font-size: 25px;

        line-height: 1.3;
    }


    /* H3 */

    .seo-content-page h3 {
        font-size: 19px;
    }


    /* Paragraph */

    .seo-content-page p {
        font-size: 15.5px;

        line-height: 1.8;
    }


    /* TOC */

    .seo-content-page > nav {
        margin: 20px 0;

        padding: 25px 18px;
    }


    .seo-content-page > nav::before {
        font-size: 19px;
    }


    .seo-content-page > nav a {
        padding: 12px 12px 12px 38px;

        font-size: 14px;
    }


    /* Lists */

    .seo-content-page section li {
        padding: 15px 15px 15px 46px;

        font-size: 15px;
    }


    .seo-content-page section li::before {
        left: 14px;
        top: 16px;
    }


    /* Syllabus */

    #syllabus-breakdown h3 {
        padding: 13px 15px;

        font-size: 18px;
    }


    /* FAQ */

    #faq h3 {
        padding: 17px;

        font-size: 17px;
    }


    #faq h3::before {
        width: 27px;
        height: 27px;

        margin-right: 8px;

        font-size: 13px;
    }


    #faq h3 + p {
        padding: 17px;

        font-size: 15px;
    }

}


/* -------------------------
   SMALL MOBILE
------------------------- */

@media (max-width: 480px) {

    .seo-content-page {
        padding-left: 10px;
        padding-right: 10px;
    }


    .seo-content-page section {
        padding: 24px 16px;
    }


    .seo-content-page > section:first-child {
        padding: 28px 16px;
    }


    .seo-content-page > section:first-child h1 {
        font-size: 27px;
    }


    .seo-content-page h2 {
        font-size: 23px;
    }


    .seo-content-page h3 {
        font-size: 18px;
    }


    .seo-content-page section li {
        padding-left: 43px;

        font-size: 14.5px;
    }

}