:root {
    --bg: #f5f7fa;
    --surface: #f5f7fa;
    --surface-alt: #d6e0eb;
    --surface-key: #ffffff;
    --ink: #163047;
    --muted: #5f7282;
    --accent: #16815d;
    --accent-dark: #0f6648;
    --line: #d5dce3;
    --danger: #9a2d2d;
    --danger-bg: #fceaea;
    --success: #1f7a4f;
    --success-bg: #e7f6ee;
    --shadow: 0 16px 36px rgba(22, 48, 71, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Libre Franklin', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 3.25rem 0;
    background: var(--surface);
}

.section-alt {
    background: var(--surface-alt);
}

.section-key {
    background-color: var(--surface-key);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        url('/img/hpbg.jpg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 120%;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading h2,
.section-heading h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.site-header {
    background: var(--surface-key);
}

.masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.1rem 0 1rem;
}

.logo {
    width: min(240px, 100%);
}

.contact-card {
    align-self: flex-end;
    text-align: right;
    font-size: 0.95rem;
}

.contact-card p {
    margin: 0.15rem 0;
}

.contact-facebook-short {
    display: none;
}

.site-nav-wrap {
    width: 100%;
    background: linear-gradient(#faebbc, #fc0);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 3px 3px 15px #c7c7c7;
}

.site-nav {
    display: flex;
    flex-wrap: nowrap;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0;
}

.site-nav-mobile,
.mobile-nav-overlay,
.mobile-drawer {
    display: none;
}

.desktop-types {
    position: relative;
    flex: 1 1 0;
}

.desktop-types summary {
    width: 100%;
    list-style: none;
    cursor: pointer;
    white-space: nowrap;
}

.desktop-types summary::-webkit-details-marker {
    display: none;
}

.desktop-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 16rem;
    display: grid;
    background: linear-gradient(#faebbc, #fc0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.desktop-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #000;
    border-bottom: 1px solid #f3c000;
    text-decoration: none;
}

.desktop-dropdown-item:last-child {
    border-bottom: 0;
}

.desktop-dropdown-item:hover,
.desktop-types[open] > summary {
    background-color: #f3c000;
    text-decoration: none;
}

.mobile-nav-toggle {
    position: absolute;
    left: -9999px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.35em;
    min-height: 46px;
    border: 0;
    border-right: 1px solid #f3c000;
    border-radius: 0;
    background: transparent;
    color: #000;
    font-size: 0.9rem;
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.35em;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.9rem;
    line-height: 1.5em;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}


.nav-link.active {
    background: transparent;
    color: #000;
}

.nav-link:first-child {
    border-left: 1px solid #fc0;
}

.nav-link:hover {
    background-color: #fc0;
    text-decoration: none;
}

.site-nav .nav-link {
    flex: 1 1 0;
}

.is-disabled {
    color: #000;
    background: transparent;
    cursor: not-allowed;
    pointer-events: none;
}

.key-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.eyebrow {
    margin: 0 0 0.5rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.key-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    line-height: 1.05;
}

.lede {
    font-size: 1.08rem;
}

.tick-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.tick-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.55rem;
}

.tick-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

.tick-list.compact {
    margin: 0.75rem 0 0;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card,
.request-card,
.testimonial-card,
.photo-review-card,
.info-card,
.service-card,
.blog-card,
.charity-card,
.step-card {
    background: var(--surface);
    border: 1px solid rgba(22, 48, 71, 0.08);
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1rem;
}

.stat-card strong {
    display: block;
    font-size: 1.35rem;
}

.stat-card span,
.muted {
    color: var(--muted);
}

.request-card {
    padding: 1.5rem;
}

.request-card h2 {
    margin-top: 0;
    text-align: center;
}

[x-cloak] {
    display: none !important;
}

.request-form {
    display: grid;
    gap: 0.95rem;
}

.request-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
}

.request-label-row {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.request-help {
    display: inline-flex;
    position: relative;
}

.request-help-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--muted);
    cursor: help;
    display: inline-flex;
    justify-content: center;
    padding: 0;
}

.request-help-button svg {
    display: block;
}

.request-help-tooltip {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    box-shadow: 0 16px 36px rgba(22, 48, 71, 0.14);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.95rem 1rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: min(24rem, calc(100vw - 3rem));
    z-index: 10;
}

.request-help-tooltip p,
.request-help-tooltip ul {
    margin: 0;
}

.request-help-tooltip ul {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

.request-help-tooltip li {
    margin-bottom: 0.2rem;
}

.request-form input,
.request-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.85rem 0.95rem;
    font: inherit; 
    font-weight: 400;
    color: var(--ink);
    background: #fff;
}

.request-form textarea {
    resize: vertical;
}

.request-form .is-invalid {
    border-color: #c43d2f;
}

.field-error {
    color: #c43d2f;
    font-size: 0.92rem;
    font-weight: 500;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.primary-button:hover {
    background: var(--accent-dark);
    text-decoration: none;
}

.primary-button[disabled] {
    cursor: wait;
    opacity: 0.75;
}

.form-note {
    margin: 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.9rem;
}

.flash {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.flash p,
.flash ul {
    margin: 0;
}

.flash ul {
    padding-left: 1rem;
}

.flash-success {
    color: var(--success);
    background: var(--success-bg);
}

.flash-error {
    color: var(--danger);
    background: var(--danger-bg);
}

.photo-review-grid,
.testimonial-grid,
.card-row,
.steps-grid,
.services-grid,
.blog-grid,
.charity-grid {
    display: grid;
    gap: 1rem;
}

.photo-review-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 1rem;
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.homepage-testimonials-columns {
    column-count: 1;
    column-gap: 10px;
    column-fill: balance;
}

.homepage-review-photo-section {
    display: grid;
    gap: 0.5rem;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 10px;
}

.card-row {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.matched-assignments-scroll {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border: 0;
    scrollbar-width: thin;
    scrollbar-color: rgb(254, 203, 0) #cfd8dc;
}

.matched-assignments-scroll::-webkit-scrollbar {
    height: 5px;
    background-color: #f5f5f5;
}

.matched-assignments-scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
    border-radius: 10px;
}

.matched-assignments-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.44, rgb(255, 231, 151)),
        color-stop(0.72, rgb(254, 203, 0)),
        color-stop(0.86, rgb(199, 158, 0))
    );
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-legacy-grid {
    gap: 1rem;
    align-items: stretch;
}

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.charity-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.testimonial-card,
.photo-review-card,
.info-card,
.service-card,
.blog-card,
.charity-card,
.step-card {
    padding: 1.15rem;
}

.matched-assignment-card {
    display: inline-block;
    width: 184px;
    margin: 1em 0.2em;
    border: 1px solid #eee;
    border-radius: 7px;
    box-shadow: 3px 3px 5px #bbb;
    vertical-align: top;
    white-space: normal;
}

.photo-review-card {
    border: 1px solid #e1cc89;
    border-radius: 0.45rem;
    background: #fff;
    box-shadow: 3px 3px 5px #bbb;
    padding: 1rem 1rem 0.75rem;
}

.photo-review-card img {
    border: 1px solid #999;
    border-radius: 0.2rem;
}

.photo-review-card p {
    margin: 0.75rem 0 0.45rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.photo-review-card small {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
}

.testimonial-card {
    border-top: 1px solid #e1cc89;
    border-bottom: 1px solid #e1cc89;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff url('/img/openquote1.gif') no-repeat top left;
    padding: 0.75rem;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 10px;
}

.testimonial-card blockquote {
    display: block;
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    background: url('/img/closequote1.gif') no-repeat bottom right;
    padding: 0 1.2rem 0.9rem 2rem;
}

.testimonial-meta {
    display: grid;
    gap: 0.2rem;
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.25;
    text-align: right;
}

.testimonial-meta strong {
    color: var(--ink);
    font-weight: 600;
}

.homepage-review-photo-section .photo-review-card {
    margin-bottom: 0;
}

.align-right {
    text-align: right;
}

.table-wrap {
    overflow-x: auto;
}

.rate-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--surface);
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}

.rate-col-label {
    width: 1%;
}

.rate-col-value {
    width: 33%;
}

.rate-table th,
.rate-table td {
    border: 1px solid var(--line);
    padding: 0.65rem 0.55rem;
    text-align: center;
    line-height: 1.25;
}

.rate-table th:first-child,
.rate-table td:first-child {
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
}

.rate-icon {
    width: 64px;
    margin: 0 auto;
}

.rate-note {
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.step-card h3,
.service-card h3,
.blog-card h3,
.charity-card h3 {
    margin-top: 0;
}

.step-card {
    padding: 0.95rem;
}

.step-card > img {
    display: block;
    height: auto;
    margin: 0 auto 0.7rem;
}

.step-card h3 {
    margin-bottom: 0.45rem;
}

.step-card p {
    margin: 0;
}

.step-card .tick-list.compact {
    margin-top: 0.55rem;
}

.centered-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.service-legacy-card {
    min-width: 200px;
    border: 1px solid #e1cc89;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: 3px 3px 5px #bbb;
    padding: 0.5rem 0.65rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.service-legacy-card h3 {
    margin-bottom: 0.55rem;
}

.service-legacy-card .service-links {
    display: block;
}

.service-legacy-card .service-link {
    display: block;
    width: fit-content;
    margin-bottom: 0.45rem;
}

.service-theme-language {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='80%25' x='60%25' font-size='1.5em' opacity='0.2'%3E%F0%9F%92%AC%3C/text%3E%3C/svg%3E");
}

.service-theme-maths {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='80%25' x='60%25' font-size='1.5em' opacity='0.2'%3E%F0%9F%93%90%3C/text%3E%3C/svg%3E");
}

.service-theme-humanities {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='80%25' x='60%25' font-size='1.5em' opacity='0.2'%3E%F0%9F%93%9C%3C/text%3E%3C/svg%3E");
}

.service-theme-business {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='80%25' x='60%25' font-size='1.5em' opacity='0.2'%3E%F0%9F%93%8A%3C/text%3E%3C/svg%3E");
}

.service-theme-exams {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='80%25' x='60%25' font-size='1.5em' opacity='0.2'%3E%F0%9F%8E%AF%3C/text%3E%3C/svg%3E");
}

.service-theme-levels {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='80%25' x='60%25' font-size='1.5em' opacity='0.2'%3E%F0%9F%8F%AB%3C/text%3E%3C/svg%3E");
}

.service-theme-locations {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='80%25' x='60%25' font-size='1.5em' opacity='0.2'%3E%F0%9F%93%8D%3C/text%3E%3C/svg%3E");
}

.service-theme-generic {
    background-image: none;
}

.blog-thumb-wrap {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 1rem;
    background: #e7edf2;
}

.blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charity-logo {
    width: 100%;
    object-fit: cover;
}

.charity-logo {
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #fff;
    padding: 0.75rem;
    border-radius: 0.9rem;
    margin-bottom: 1rem;
}

.charity-copy {
    max-width: 60rem;
}

.site-footer {
    background: #fff;
    padding: 2.5rem 0 4rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-text-link {
    text-decoration: underline;
}

.footer-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
    text-align: center;
}

.footer-trust a,
.footer-trust img,
.footer-trust span {
    display: inline-block;
    margin-inline: auto;
}

.site-footer p {
    max-width: 62rem;
    margin: 0 auto 1rem;
    color: var(--muted);
    text-align: center;
}

.footer-copy {
    font-size: 0.95rem;
}

.wa-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.wa-icon {
    width: 30px;
    height: 30px;
}

.popup-stack {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.75rem;
    width: min(360px, calc(100% - 2rem));
    z-index: 60;
}

.popup-card {
    position: relative;
    background: #fff;
    border-left: 5px solid var(--accent);
    border-radius: 1rem;
    padding: 1rem 1.1rem 1rem 1rem;
    box-shadow: var(--shadow);
}

.popup-card-match {
    border-left-color: #f0a500;
}

.popup-card p,
.popup-card strong {
    margin: 0;
}

.popup-close {
    position: absolute;
    right: 0.6rem;
    top: 0.4rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 1.25rem;
    cursor: pointer;
}

.empty-state {
    color: var(--muted);
    margin: 0;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #8a96a1;
    margin: 1.25rem 0 0.75rem;
}

.faq-page {
    padding-bottom: 2rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.7fr);
    gap: 2rem;
    align-items: start;
}

.faq-main,
.faq-sidebar,
.faq-single-column {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.faq-single-column {
    max-width: 900px;
}

.public-copy-page {
    max-width: 900px;
}

.faq-main h1,
.faq-single-column h1,
.public-copy-page h1 {
    margin: 0 0 1rem;
}

#FAQQnsSection,
#FAQAnsSection {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    border: 1px solid #6699cc;
    border-radius: 0.9rem;
    background: #fff;
    padding: 1.2rem;
    margin-bottom: 1.4rem;
    overflow-wrap: anywhere;
}

#FAQQnsSection ol,
#FAQAnsSection ol,
#FAQAnsSection ul {
    margin: 0 0 1rem;
    padding-left: 1.4rem;
}

#FAQQnsSection p:last-child,
#FAQAnsSection p:last-child {
    margin-bottom: 0;
}

.faq-answer-list {
    display: block;
}

.faq-answer-list > li {
    margin: 0 0 1.3rem;
}

.faq-answer-list h2 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
}

#FAQQnsSection a,
#FAQAnsSection a,
#FAQQnsSection li,
#FAQAnsSection li,
#FAQAnsSection p {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.faq-label {
    text-decoration: underline;
}

.faq-rate-table {
    max-width: 100%;
    overflow: auto;
}

.faq-sidebar {
    padding-top: 4.1rem;
}

.content-page {
    padding: 0 0 2rem;
}

.content-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 1.4rem;
}

.content-panel h1 {
    margin: 0 0 1rem;
}

.content-panel h2,
.content-panel h3 {
    color: #444;
}

.content-panel ol,
.content-panel ul {
    padding-left: 1.4rem;
}

.content-panel li {
    margin-bottom: 0.45rem;
}

.public-copy-page h2,
.public-copy-page h3 {
    color: #444;
}

.public-copy-page ol,
.public-copy-page ul {
    padding-left: 1.4rem;
}

.public-copy-page li {
    margin-bottom: 0.45rem;
}

.public-copy-page img {
    max-width: 100%;
    height: auto;
}

.content-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.service-page-divider {
    margin: 2rem 0;
}

.service-page-main .tick,
.service-page-section .tick {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-page-main .tick li,
.service-page-section .tick li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.55rem;
}

.service-page-main .tick li::before,
.service-page-section .tick li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

.service-related-posts {
    margin-top: 2rem;
}

.content-grid,
.testimonials-page-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.content-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.45fr);
    gap: 2rem;
    align-items: start;
}

.blog-main,
.blog-sidebar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.blog-list-post {
    border: 1px solid #ddd;
    padding: 1rem 1rem 1.5rem;
    margin: 1rem 0 2rem;
    border-radius: 0 0 0.45rem 0.45rem;
    box-shadow: 3px 3px 15px #bbb;
    overflow: auto;
}

.blog-list-post:hover {
    border-color: #bbb;
    box-shadow: 3px 3px 15px #888;
}

.blog-list-post h2,
.blog-single-post h1 {
    margin-top: 0;
}

.blog-list-thumb {
    float: left;
    padding-right: 1rem;
}

.blog-list-thumb img {
    width: min(230px, 100%);
    height: auto;
    display: block;
}

.blog-single-post .post_metadata {
    color: #767676;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.blog-tag-list {
    color: #bb990f;
}

.blog-tag-list a {
    color: #bb990f;
    border: 1px solid #e8deb4;
    padding: 0 0.5em;
    white-space: nowrap;
}

.blog-tag-list a:hover {
    text-decoration: none;
    background-color: #ffe789;
}

.blog-sidebar h3 {
    margin: 0 0 1rem;
}

.blog-sidebar {
    padding-top: 4.1rem;
}

.blog-pagination {
    text-align: center;
}

.page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px 0 0;
    border: 1px solid #eee;
    line-height: 1;
}

.page-numbers.current,
a.page-numbers:hover {
    background-color: #6699cc;
    color: #fff;
    text-decoration: none;
}

a.page-numbers:hover {
    cursor: pointer;
}

.blog-post-body img {
    max-width: 100%;
    height: auto;
}

.clear {
    clear: both;
}

.testimonials-main,
.testimonials-sidebar {
    min-width: 0;
}

.testimonials-sidebar {
    padding-top: 4.1rem;
}

.legacy-review-columns {
    column-gap: 1rem;
}

.service-review-columns {
    column-count: 3;
}

.testimonial-page-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.testimonial-page-cta h3 {
    margin: 0 0 0.45rem;
    color: #444;
}

.assignments-top-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.85fr);
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.assignments-filter-box,
.assignments-helper-card,
.assignments-seo-box,
.assignments-detail-cta {
    border: 1px solid rgba(22, 48, 71, 0.08);
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.assignments-filter-box h2,
.assignments-results h2,
.assignments-seo-box h3 {
    margin-top: 0;
}

.assignments-filter-box h2,
.assignments-results h2 {
    font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.assignments-filter-label {
    display: block;
    margin: 0.8rem 0 0.3rem;
    font-weight: 700;
}

.assignments-filter-box select,
.assignments-filter-box input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.assignments-filter-box select:focus,
.assignments-filter-box input:focus {
    outline: none;
    border-color: #8fb0c8;
    box-shadow: 0 0 0 3px rgba(143, 176, 200, 0.2);
}

.assignments-submit {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 1.2rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.assignments-submit:hover {
    background: var(--accent-dark);
}

.assignments-submit[disabled] {
    cursor: wait;
    opacity: 0.75;
    pointer-events: none;
}

.assignments-helper-stack {
    display: grid;
    gap: 1rem;
}

.assignments-helper-card--telegram {
    text-align: center;
}

.assignments-helper-card--telegram p {
    margin-top: 0;
    color: var(--ink);
    font-weight: 700;
}

.assignments-helper-card--telegram span {
    color: var(--accent);
}

.assignments-helper-link-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.assignments-helper-card--account {
    text-align: center;
}

.assignments-helper-card--account strong {
    color: var(--ink);
}

.assignments-helper-card--account p:last-child {
    margin-bottom: 0;
}

.assignments-results {
    margin-bottom: 1.5rem;
}

.assignments-results-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.assignments-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.assignments-sort-label {
    font-weight: 700;
    color: var(--ink);
}

.assignments-sort-form select {
    min-width: 12rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}

.assignments-sort-form select:focus {
    outline: none;
    border-color: #8fb0c8;
    box-shadow: 0 0 0 3px rgba(143, 176, 200, 0.2);
}

.assignments-cta {
    text-align: center;
    line-height: 1.8;
    color: #7a5d00;
}

.assignments-table-wrap {
    overflow: auto;
}

.assignments-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.assignments-table th,
.assignments-table td {
    border: 1px solid var(--line);
    padding: 0.85rem;
    vertical-align: top;
}

.assignments-table th {
    background: #f5f8fc;
    text-align: left;
    color: var(--ink);
}

.assignments-date {
    white-space: nowrap;
    text-align: center;
    color: var(--muted);
}

.assignments-status-cell {
    width: 170px;
    text-align: center;
}

.assignment-flag {
    color: var(--muted);
}

.assignment-flag--urgent {
    color: var(--danger);
}

.assignments-card-apply-form {
    width: 100%;
}

.assignments-page--cards .assignments-card-apply-form input[type="text"],
.assignments-page--cards .assignments-card-apply-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
    resize: vertical;
}

.assignments-page--cards .assignments-card-apply-form input[type="text"]:focus,
.assignments-page--cards .assignments-card-apply-form textarea:focus {
    outline: none;
    border-color: #8fb0c8;
    box-shadow: 0 0 0 3px rgba(143, 176, 200, 0.2);
}

.assignments-page--cards .assignments-card-apply-form .small {
    color: var(--muted);
}

.assignments-card-apply-form .assignments-submit,
.assignments-card .assignments-submit {
    width: 100%;
}

.assignments-card-grid {
    display: grid;
    gap: 1rem;
}

.assignments-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.assignments-pagination {
    display: grid;
    gap: 0.9rem;
    justify-items: center;
    margin-top: 1.5rem;
}

.assignments-pagination-summary {
    color: var(--muted);
    font-size: 0.95rem;
}

.assignments-pagination-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.assignments-pagination-link,
.assignments-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    min-height: 2.6rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.assignments-pagination-link:hover {
    border-color: #8fb0c8;
    text-decoration: none;
}

.assignments-pagination-link--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.assignments-pagination-link--disabled,
.assignments-pagination-ellipsis {
    color: var(--muted);
}

.assignments-card {
    border: 1px solid rgba(22, 48, 71, 0.08);
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 1.1rem;
    min-width: 0;
}

.assignments-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.assignments-card-badges {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    order: 1;
}

.assignments-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.assignments-card-badge--commission {
    background: #fff6df;
    color: #8a6500;
}

.assignments-card-badge--urgent {
    background: #fdeaea;
    color: #b42318;
}

.assignments-card-date {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #f5f8fc;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: auto;
    order: 2;
}

.assignments-card {
    padding: 1.25rem;
}

.assignments-card--detail {
    max-width: 860px;
    margin: 0 auto;
}

.assignments-card-heading {
    margin-bottom: 0.85rem;
    color: var(--ink);
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: left;
}

@media (max-width: 430px) {
    .assignments-card-top {
        flex-direction: column;
        align-items: stretch;
    }

    .assignments-card-date {
        order: 1;
        margin-left: auto;
        align-self: flex-end;
    }

    .assignments-card-badges {
        order: 2;
    }
}

.assignments-card-heading strong {
    font-size: 1.1em;
}

.assignments-card > p {
    margin: 0 0 0.55rem;
    overflow-wrap: anywhere;
}

.assignments-card > p strong {
    color: var(--ink);
}

.assignments-card > p:first-of-type {
    margin-top: 0;
}

.assignments-card > p:last-of-type {
    margin-bottom: 0;
}

.assignments-card-status .assignment-apply-state > a {
    display: inline-flex;
    margin-top: 0.2rem;
}

.assignments-card-status {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(28, 93, 62, 0.12);
    border-radius: 1rem;
    background: #f6fbf4;
}

.assignments-card-apply-heading {
    margin-bottom: 0.9rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.assignments-card-form-group {
    display: grid;
    gap: 0.9rem;
}

.tutor-mandatory {
    color: #b71c1c;
    font-size: 1.05em;
    font-weight: 800;
    line-height: 1;
    vertical-align: baseline;
    margin-left: 0.15rem;
}

.assignments-card-optional-toggle-wrap {
    display: flex;
    justify-content: center;
    padding: 0.15rem 0;
    border-radius: 1rem;
    background: #fff;
}

.assignments-page--cards .assignments-card-apply-form .assignments-card-optional-toggle,
.assignments-card-apply-form .assignments-card-optional-toggle {
    width: auto;
    max-width: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--accent);
    border-radius: 0.95rem;
    background: #fff;
    color: var(--accent);
    font: inherit;
    font-weight: 700;
    text-align: center;
    line-height: 1.35;
    cursor: pointer;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: inset 0 0 0 1px rgba(28, 93, 62, 0.08);
}

.assignments-card-optional-toggle-line {
    display: block;
}

.assignments-page--cards .assignments-card-apply-form .assignments-card-optional-toggle:hover,
.assignments-card-apply-form .assignments-card-optional-toggle:hover {
    background: #f6fbf4;
    text-decoration: none;
}

.assignments-page--cards .assignments-card-apply-form .assignments-card-optional-toggle:focus-visible,
.assignments-card-apply-form .assignments-card-optional-toggle:focus-visible {
    outline: 2px solid #0a5ea8;
    outline-offset: 2px;
}

.assignments-card-optional-fields[hidden] {
    display: none;
}

.assignments-card-optional-fields {
    display: grid;
    gap: 0.9rem;
}

.assignments-card-summary p {
    margin: 0 0 0.45rem;
    color: var(--ink);
}

.assignments-card-summary p:last-child {
    margin-bottom: 0;
}

.assignments-card-summary strong {
    font-weight: 700;
}

.assignments-card-field label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 700;
    color: var(--ink);
}

.assignments-card-field textarea {
    min-height: 7rem;
}

.assignments-card-field-error {
    margin-top: 0.4rem;
    color: #9b1c1c;
    font-size: 0.92rem;
}

.assignments-card-field-invalid {
    border-color: #c55 !important;
    box-shadow: 0 0 0 3px rgba(197, 85, 85, 0.12) !important;
}

.assignments-seo-box {
    margin-bottom: 1.5rem;
}

.assignments-seo-box > p:first-child {
    margin-top: 0;
}

.assignments-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.assignments-detail-wrap {
    padding-bottom: 2rem;
}

.assignment-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid rgba(22, 48, 71, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.assignment-detail-table td {
    padding: 0.9rem 1rem;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.assignment-detail-table tr:last-child td {
    border-bottom: 0;
}

.assignment-detail-label {
    width: 180px;
    padding-right: 1rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    color: var(--muted);
    background: #f5f8fc;
}

.assignments-detail-cta {
    margin: 2rem 0 0;
    text-align: center;
}

.page-note-link {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.agent-review-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.agent-review-card {
    border: 1px solid #bbb;
    border-radius: 0.45rem;
    overflow: hidden;
    background: #fff;
}

.agent-review-card img {
    width: 100%;
    height: auto;
}

.volunteer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.volunteer-tile {
    width: min(190px, 100%);
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background: #fff;
    text-align: center;
    padding: 0.85rem;
}

.volunteer-tile a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    text-decoration: none;
}

.volunteer-tile:hover {
    border-color: #fc0;
    transition: 0.3s ease;
}

.volunteer-tile a:hover {
    text-decoration: none;
}

.volunteer-tile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 150px;
}

.volunteer-tile-logo img {
    display: block;
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
}

.volunteer-tile-name {
    display: block;
}

.volunteer-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.65fr);
    gap: 2rem;
    align-items: start;
}

.volunteer-copy h1,
.volunteer-copy h3 {
    margin-top: 0;
}

.volunteer-copy img.volunteer-inline-logo {
    float: left;
    display: inline-block;
    padding-right: 1rem;
    margin-bottom: 0.5rem;
}

.volunteer-copy ul,
.volunteer-copy ol {
    padding-left: 1.4rem;
}

.volunteer-photos img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

@media (min-width: 720px) {
    .section-key {
        background-color: var(--surface-key);
        background-image:
            linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
            url('/img/hpbg.png');
        background-repeat: no-repeat;
        background-position: right top;
        background-size: auto;
    }

    .legacy-review-columns {
        column-count: 2;
    }

    .service-review-columns {
        column-count: 3;
    }

    .homepage-testimonials-columns {
        column-count: 3;
    }

    .homepage-review-photo-section {
        width: 100%;
        height: 500px;
        overflow-y: auto;
        padding-right: 0.5rem;
        margin-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgb(254, 203, 0) #f5f5f5;
    }

    .homepage-review-photo-section::-webkit-scrollbar {
        width: 8px;
        background-color: #f5f5f5;
    }

    .homepage-review-photo-section::-webkit-scrollbar-track {
        box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
        background-color: #f5f5f5;
        border-radius: 10px;
    }

    .homepage-review-photo-section::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-image: linear-gradient(
            to top,
            rgb(255, 231, 151) 44%,
            rgb(254, 203, 0) 72%,
            rgb(199, 158, 0) 86%
        );
    }
}

@media (max-width: 900px) {
    .key-grid {
        grid-template-columns: 1fr;
    }

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

    .service-review-columns {
        column-count: 1;
    }

    .content-grid,
    .testimonials-page-grid,
    .blog-layout,
    .volunteer-detail-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        padding-top: 0;
    }

    .testimonials-sidebar {
        padding-top: 0;
    }

    .blog-sidebar {
        padding-top: 0;
    }

    .assignments-top-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-list-thumb {
        float: none;
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .contact-card {
        text-align: left;
    }

    .request-help-tooltip {
        left: 0;
        right: auto;
    }

    .rate-table {
        min-width: 540px;
        font-size: 0.82rem;
    }

    .rate-table th,
    .rate-table td {
        padding: 0.45rem 0.35rem;
    }

    .rate-icon {
        width: 46px;
    }
}

@media (max-width: 422px) {
    .stat-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 720px) and (max-width: 959px) {
    .masthead {
        gap: 1rem;
        padding: 0.65rem 0 0.55rem;
    }

    .logo {
        width: min(220px, 42vw);
    }

    .contact-card {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .contact-card p {
        margin: 0.08rem 0;
    }
}

@media (max-width: 719px) {
    .masthead {
        gap: 0.75rem;
        padding: 0.55rem 0 0.45rem;
        align-items: flex-start;
    }

    .logo {
        width: min(150px, 48vw);
    }

    .contact-card {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .contact-card p {
        margin: 0.05rem 0;
    }

    .contact-email,
    .contact-facebook-full,
    .site-nav-desktop {
        display: none;
    }

    .contact-facebook-short,
    .site-nav-mobile {
        display: block;
    }

    .site-nav-mobile {
        display: grid;
        grid-template-columns: 40px minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 1fr);
        align-items: stretch;
        width: 100%;
    }

    .mobile-menu-button,
    .mobile-nav-item,
    .mobile-types summary {
        min-height: 40px;
        min-width: 0;
        padding: 0 0.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        color: #000;
        font-size: 0.9rem;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        text-decoration: none;
        border-right: 1px solid #f3c000;
        background: transparent;
        overflow: hidden;
    }

    .mobile-nav-item,
    .mobile-types summary {
        text-overflow: ellipsis;
    }

    .mobile-nav-item > span,
    .mobile-types summary > span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-button:hover,
    .mobile-nav-item:hover,
    .mobile-types summary:hover {
        background-color: #fc0;
        text-decoration: none;
    }

    .mobile-menu-button img,
    .mobile-types summary img {
        flex: none;
    }

    .mobile-types {
        position: relative;
    }

    .mobile-types summary {
        list-style: none;
        cursor: pointer;
    }

    .mobile-types summary::-webkit-details-marker {
        display: none;
    }

    .mobile-dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 12rem;
        display: grid;
        background: linear-gradient(#faebbc, #fc0);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 5;
    }

    .mobile-dropdown-item {
        padding: 0.75rem 0.9rem;
        color: #000;
        border-bottom: 1px solid #f3c000;
        background: transparent;
        text-align: left;
    }

    .mobile-dropdown-item:last-child {
        border-bottom: 0;
    }

    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 70;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: min(18rem, calc(100% - 3rem));
        height: 100vh;
        padding: 1rem 0 1.5rem;
        background: #111;
        color: #fff;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 80;
    }

    .mobile-drawer-header {
        display: flex;
        justify-content: flex-end;
        padding: 0 1rem 0.5rem;
    }

    .mobile-drawer-close {
        color: #fff;
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
        text-decoration: none;
    }

    .mobile-drawer-nav,
    .mobile-drawer-group {
        display: grid;
    }

    .mobile-drawer-link,
    .mobile-drawer-heading {
        padding: 0.65rem 2rem;
        color: #fff;
        font-size: 1.05rem;
    }

    .mobile-drawer-group {
        gap: 0.15rem;
        margin: 0.35rem 0;
    }

    .mobile-drawer-heading {
        font-weight: 700;
        padding-bottom: 0.2rem;
    }

    .mobile-drawer-group .mobile-drawer-link {
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        font-size: 0.95rem;
    }

    .mobile-drawer .is-disabled {
        color: rgba(255, 255, 255, 0.78);
        background: transparent;
        pointer-events: none;
    }

    #mobile-nav-toggle:checked ~ .mobile-nav-overlay,
    #mobile-nav-toggle:checked ~ .mobile-drawer {
        display: block;
    }

    #mobile-nav-toggle:checked ~ .mobile-drawer {
        transform: translateX(0);
    }
}

@media (max-width: 640px) {
    .section {
        padding: 2.4rem 0;
    }

    .container {
        width: min(100% - 1.2rem, 1120px);
    }

    .site-nav,
    .footer-links {
        gap: 0.45rem;
    }

    .nav-link,
    .service-link {
        width: 100%;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    #FAQQnsSection,
    #FAQAnsSection {
        padding: 0.9rem;
    }

    #FAQQnsSection ol,
    #FAQAnsSection ol,
    #FAQAnsSection ul {
        padding-left: 1.15rem;
    }

    .content-panel {
        padding: 1rem;
    }

    .assignments-table th,
    .assignments-table td {
        padding: 0.7rem;
    }

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

    .assignments-card-heading {
        font-size: 1.02rem;
    }

    .assignments-seo-grid {
        grid-template-columns: 1fr;
    }

    .assignments-results-toolbar {
        justify-content: flex-start;
    }

    .assignment-detail-label {
        width: 110px;
        text-align: left;
    }
}
