/* =========================
   FOUNDATION
========================= */
:root {
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Ubuntu', sans-serif;

    --color-white: #ffffff;
    --color-black: #000000;
    --color-blue-dark: #1464ac;
    --color-blue-mid: #1565b2;
    --color-blue-light: #439cdc;
    --color-blue-accent: #1e7590;
    --color-blue-accent-hover: #3598ab;
    --color-green: #95c93f;
    --color-green-hover: #a6d63b;
    --color-yellow: #ffd600;
    --color-light-bg: #e9eef0;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-pill: 999px;

    --shadow-title: 0 2px 10px rgba(0, 0, 0, 0.15);
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.12);

    --transition-base: all 0.25s ease;

    --fs-body: 1rem;
    --fs-body-md: 1.05rem;
    --fs-body-lg: 1.2rem;
    --fs-btn: 0.95rem;
    --fs-btn-sm: 0.88rem;
    --fs-title-hero: 5.2rem;
    --fs-title-xl: 4rem;
    --fs-title-lg: 3.6rem;
    --fs-title-md: 3rem;
    --fs-title-sm: 2.6rem;
    --fs-title-xs: 2.4rem;

    --section-pad-lg: 90px;
    --section-pad-md: 75px;
    --section-pad-sm: 60px;
    --space-1: 10px;
    --space-2: 14px;
    --space-3: 18px;
    --space-4: 20px;
    --space-5: 25px;
    --space-6: 30px;
    --space-7: 35px;
    --space-8: 40px;
}

/* =========================
   BASE
========================= */
html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-black);
    font-family: var(--font-body);
}

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

a {
    text-decoration: none;
    transition: var(--transition-base);
}

/* =========================
   COMPONENTS
========================= */
.hero-title,
.about-title,
.features-title,
.team-title,
.course-title,
.courses-cta-text,
.experience-title,
.safeguarding-title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
}

.about-content p,
.features-box,
.features-content,
.team-content,
.course-list,
.experience-text,
.safeguarding-text {
    font-family: var(--font-body);
}

.hero-btn,
.features-btn,
.experience-btn,
.courses-cta-btn,
.footer-btn,
.experience-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: var(--fs-btn);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-base);
}

.hero-btn,
.features-btn,
.experience-btn,
.courses-cta-btn,
.footer-btn {
    color: var(--color-white);
}

.hero-btn:focus-visible,
.features-btn:focus-visible,
.courses-cta-btn:focus-visible,
.footer-btn:focus-visible,
.experience-btn:focus-visible,
.experience-btn-outline:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 3px;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('../img/hero-home.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.30) 20%,
        rgba(0, 0, 0, 0.18) 40%,
        rgba(0, 0, 0, 0.07) 58%,
        rgba(0, 0, 0, 0) 70%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    max-width: 430px;
    margin-left: 300px;
    padding-top: 70px;
    padding-bottom: 60px;
}

.hero-logo {
    margin-bottom: var(--space-5);
}

.hero-logo img {
    width: 150px;
}

.hero-title-wrapper {
    width: 100%;
    margin-bottom: var(--space-5);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    width: 100%;
    color: var(--color-white);
    font-size: var(--fs-title-hero);
    line-height: 0.95;
    letter-spacing: 0;
    text-shadow: var(--shadow-title);
}

.hero-title .hero-left,
.hero-title .hero-right {
    display: block;
}

.hero-left {
    align-self: flex-start;
    text-align: left;
}

.hero-right {
    align-self: flex-end;
    text-align: right;
}

.hero-text {
    margin: 0 0 22px 0;
    color: var(--color-white);
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-btn {
    background-color: var(--color-green);
}

.hero-btn:hover {
    background-color: var(--color-green-hover);
    color: var(--color-white);
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
    background-color: var(--color-blue-dark);
    color: var(--color-white);
}

.about-content {
    max-width: 600px;
    padding-left: 70px;
    padding-right: 30px;
}

.about-title {
    margin-bottom: var(--space-5);
    color: var(--color-white);
    font-size: var(--fs-title-lg);
    line-height: 1.05;
}

.about-content p {
    margin-bottom: var(--space-3);
    font-size: var(--fs-body-lg);
    line-height: 1.55;
}

.about-logos {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.about-logos img {
    width: auto;
    height: 125px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   FEATURES SECTION
========================= */
.features-section {
    padding: var(--section-pad-md) 0;
    background-color: var(--color-light-bg);
}

.features-title {
    margin-bottom: 50px;
    color: var(--color-blue-accent);
    font-size: var(--fs-title-xl);
}

.features-row {
    gap: 30px 0;
}

.features-box {
    margin: 15px;
    padding: 30px 25px;
    border-radius: var(--radius-sm);
    background-color: var(--color-yellow);
    font-size: var(--fs-body-lg);
    line-height: 1.4;
}

.features-box p {
    margin: 0;
    padding: 10px 0;
}

.features-box hr {
    margin: 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.8);
}

.features-content {
    padding: 30px 25px;
    color: var(--color-black);
    font-size: var(--fs-body-lg);
    line-height: 1.6;
}

.features-content p {
    margin-bottom: var(--space-3);
}

.features-btn {
    margin-top: var(--space-4);
    padding: 12px 24px;
    background-color: var(--color-blue-accent);
}

.features-btn:hover {
    background-color: var(--color-blue-accent-hover);
    color: var(--color-white);
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
    overflow: hidden;
}

.features-image img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================
   TEAM SECTION
========================= */
.team-section {
    padding: var(--section-pad-lg) 0;
    background-color: var(--color-blue-dark);
    color: var(--color-white);
}

.team-title-wrap {
    display: flex;
    justify-content: flex-start;
}

.team-title {
    color: var(--color-white);
    font-size: var(--fs-title-md);
    line-height: 1.2;
    text-shadow: var(--shadow-soft);
}

.team-content {
    color: var(--color-white);
    font-size: var(--fs-body-lg);
    line-height: 1.4;
}

.team-content p {
    margin-bottom: var(--space-3);
}

.team-list {
    margin: 0;
    padding-left: 24px;
}

.team-list li {
    margin-bottom: var(--space-1);
}

.team-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   COURSES SECTION
========================= */
.courses-section {
    background-color: var(--color-blue-light);
    color: var(--color-white);
}

.courses-top {
    padding: 70px 0 40px;
}

.course-card {
    max-width: 340px;
    margin: 0 auto var(--space-8);
}

.course-title {
    margin-bottom: var(--space-2);
    color: var(--color-white);
    font-size: 3.5rem;
    line-height: 0.95;
}

.course-list {
    margin: 0 0 30px 0;
    padding-left: 20px;
    color: var(--color-white);
    font-size: var(--fs-body-lg);
    line-height: 1.5;
}

.course-list li {
    margin-bottom: 4px;
}

.course-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-image img {
    width: 100%;
}

.courses-cta {
    padding: 26px 0;
    background-color: var(--color-blue-mid);
}

.courses-cta-text {
    color: var(--color-white);
    font-size: var(--fs-title-md);
    line-height: 1;
    text-align: center;
}

.courses-cta-action {
    display: flex;
    justify-content: center;
    align-items: center;
}

.courses-cta-btn {
    padding: 0 34px;
    background-color: var(--color-green);
}

.courses-cta-btn:hover {
    background-color: var(--color-green-hover);
    color: var(--color-white);
}

/* =========================
   EXPERIENCE SECTION
========================= */
.experience-section {
    padding: 80px 0 60px;
    background-color: var(--color-light-bg);
}

.experience-content {
    padding-right: 25px;
}

.experience-title,
.safeguarding-title {
    margin-bottom: var(--space-5);
    color: var(--color-blue-accent);
    line-height: 1;
}

.experience-title {
    font-size: 3.8rem;
}

.experience-text {
    color: var(--color-black);
    font-size: var(--fs-body-lg);
    line-height: 1.45;
}

.experience-text p {
    margin-bottom: var(--space-3);
}

.experience-list {
    margin: 0 0 var(--space-4) 0;
    padding-left: 24px;
}

.experience-list li {
    margin-bottom: 4px;
}

.experience-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
}

.experience-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.experience-btn {
    margin-top: var(--space-4);
    padding: 12px 24px;
    background-color: var(--color-blue-accent);
}

.experience-btn:hover {
    background-color: var(--color-blue-accent-hover);
    color: var(--color-white);
}

.experience-btn-outline {
    color: var(--color-blue-accent);
    border: 3px solid var(--color-blue-accent);
    background-color: transparent;
}

.experience-btn-outline:hover {
    background-color: var(--color-blue-accent-hover);
    color: var(--color-white);
}

/* =========================
   SAFEGUARDING SECTION
========================= */
.safeguarding-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
    background-color: var(--color-light-bg);
}

.safeguarding-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.safeguarding-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
}

.safeguarding-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
    margin-left: 0;
}

.safeguarding-title {
    margin-bottom: 35px;
    font-size: var(--fs-title-lg);
}

.safeguarding-text {
    color: var(--color-black);
    font-size: var(--fs-body-lg);
    line-height: 1.5;
}

.safeguarding-text p {
    margin-bottom: 22px;
}

/* =========================
   FOOTER SECTION
========================= */
.footer-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: var(--color-blue-light);
    color: var(--color-white);
}

.footer-section::before {
    content: "";
    position: absolute;
    top: -275px;
    bottom: 0;
    left: -150px;
    width: 700px;
    background-image: url('../img/footer.webp');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.footer-section::after {
    content: "";
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 760px;
    background: linear-gradient(
        to right,
        rgba(67, 156, 220, 0) 0%,
        rgba(67, 156, 220, 0.40) 48%,
        rgba(67, 156, 220, 1) 100%
        );
    pointer-events: none;
    z-index: 1;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-row {
    gap: 35px 0;
}


.footer-content {
    max-width: 410px;
    margin: 0 auto;
}

.footer-title {
    margin-bottom: var(--space-5);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--fs-title-lg);
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: var(--space-6);
}

.footer-btn {
    padding: 0 34px;
    background-color: var(--color-green);
}

.footer-btn:hover {
    background-color: var(--color-green-hover);
    color: var(--color-white);
}

.footer-text {
    max-width: 340px;
    margin: 0 0 70px 0;
    color: var(--color-white);
    font-size: var(--fs-body-lg);
    font-weight: 500;
    line-height: 1.35;
}

.footer-info h3 {
    margin: 0 0 var(--space-4) 0;
    color: var(--color-white);
    font-size: var(--fs-body-lg);
    font-weight: 700;
    text-transform: uppercase;
}

.footer-info p {
    margin: 0 0 6px 0;
    color: var(--color-white);
    font-size: var(--fs-body-md);
    font-weight: 500;
    line-height: 1.35;
}

.footer-info a {
    color: var(--color-white);
}

.footer-info a:hover {
    color: var(--color-yellow);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: var(--space-4);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-blue-light);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-social a:hover {
    background-color: var(--color-yellow);
    color: var(--color-blue-dark);
}

.footer-form {
    max-width: 380px;
    margin: 0 auto;
    padding: 26px 28px 22px;
    border-radius: var(--radius-sm);
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label,
.form-label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.82rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
    border-radius: 0;
    background-color: transparent;
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.form-group input {
    height: 34px;
}

.form-group textarea {
    min-height: 70px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-black);
}

.service-option {
    position: relative;
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option span {
    display: block;
    padding: 11px 12px;
    border-radius: 6px;
    background-color: rgba(124, 162, 41, 0.16);
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.86rem;
    transition: var(--transition-base);
}

.service-option input:checked + span,
.service-option:hover span {
    background-color: rgba(124, 162, 41, 0.32);
    color: var(--color-black);
}

.footer-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    border: none;
    border-radius: var(--radius-pill);
    background-color: var(--color-light-bg);
    color: var(--color-blue-accent);
    font-family: var(--font-body);
    font-size: var(--fs-btn-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
}

.footer-submit:hover {
    background-color: var(--color-white);
    color: var(--color-blue-dark);
}

.form-note {
    margin: 12px 0 0 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.68rem;
    line-height: 1.35;
    text-align: center;
}

.footer-map {
    margin-top: 70px;
    padding: 0 15px;
}

.footer-map iframe {
    display: block;
    width: 100%;
    min-height: 360px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-bottom p {
    margin: 0;
    color: var(--color-white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.footer-bottom a {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--color-yellow);
}

.form-privacy {
    margin-top: 15px;
}

.privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-black);
}

.privacy-label input {
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
}

.privacy-label span {
    display: inline;
}

.privacy-label a {
    color: var(--color-black);
    text-decoration: underline;
}

.privacy-label a:hover {
    color: var(--color-blue-dark);
}

.form-message {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}

.form-message-success {
    background-color: rgba(124, 162, 41, 0.25);
    color: var(--color-black);
}

.form-message-error {
    background-color: rgba(180, 0, 0, 0.15);
    color: #8a0000;
}

.map-consent-message {
    margin-bottom: 25px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    background-color: rgba(255,255,255,0.14);
    color: var(--color-white);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

a.iubenda-cs-preferences-link {
    color: var(--color-white);
}

/* =========================
   TO TOP
========================= */
.to-top-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        background-color 0.25s ease;
}

.to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.to-top-btn:hover {
    background-color: var(--color-green-hover);
}

.to-top-btn:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 3px;
}

.to-top-btn::before {
    content: "↑";
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 992px) {
    .courses-section .col-lg-4:nth-child(3) .course-image {
        transform: translateY(20px);
    }
}

@media (max-width: 1999.98px) {
    .footer-section::after {
        display: block;
    }
}

@media (max-width: 1400px) {
    .hero-content {
        margin-left: 24%;
    }

    .hero-title {
        font-size: 4.6rem;
    }

    .about-section {
        padding: var(--section-pad-md) 0;
    }

    .footer-section::before,
    .footer-section::after {
        display: none;
    }

}

@media (max-width: 1199.98px) {
    .hero-content {
        max-width: 380px;
        margin-left: 20%;
    }

    .hero-title {
        font-size: var(--fs-title-xl);
    }

    .team-title {
        font-size: 3.5rem;
    }

    .course-title {
        font-size: 3.3rem;
    }

    .courses-cta-text {
        font-size: 2.5rem;
    }

    .experience-title {
        font-size: 3.3rem;
    }

    .safeguarding-title {
        font-size: var(--fs-title-md);
    }

    .footer-title {
        font-size: var(--fs-title-md);
    }

}

@media (max-width: 991.98px) {
    .about-section,
    .features-section,
    .team-section,
    .experience-section,
    .safeguarding-section {
        text-align: center;
    }

    .hero-section {
        background-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0.18) 60%,
            rgba(0, 0, 0, 0) 100%
            );
    }

    .hero-content {
        align-items: center;
        max-width: 420px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .hero-title-wrapper {
        align-items: center;
    }

    .hero-title {
        font-size: var(--fs-title-lg);
    }

    .hero-left,
    .hero-right {
        align-self: center;
        text-align: center;
    }

    .hero-logo img {
        width: 125px;
    }

    .about-section {
        padding: 80px 0;
    }

    .about-content {
        margin: 0 auto var(--space-8);
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-title {
        font-size: var(--fs-title-sm);
    }

    .about-logos {
        justify-content: center;
    }

    .about-image img {
        max-width: 70%;
    }

    .features-title {
        margin-bottom: 25px;
        font-size: var(--fs-title-xs);
    }

    .features-box {
        margin-bottom: 30px;
    }

    .features-content {
        margin-bottom: 30px;
        padding: 0;
    }

    .features-image {
        height: auto !important;
    }

    .features-image img {
        height: auto;
    }

    .team-section {
        padding: 80px 0;
    }

    .team-title-wrap {
        justify-content: center;
        margin-bottom: 30px;
    }

    .team-content {
        margin-bottom: 35px;
    }

    .team-list,
    .course-list {
        display: inline-block;
        text-align: left;
    }

    .courses-top {
        padding: 60px 0 20px;
    }

    .course-card {
        text-align: center;
    }

    .course-list {
        margin-bottom: 24px;
    }

    .courses-cta-text {
        margin-bottom: 20px;
    }

    .experience-content {
        margin-bottom: 35px;
        padding-right: 0;
    }

    .experience-actions {
        align-items: center;
    }

    .safeguarding-image {
        margin-bottom: 30px;
    }

    .safeguarding-content {
        margin: 0 auto;
    }

    .safeguarding-title {
        margin-top: 25px;
    }

    .experience-list {
        list-style: none;
        padding-left: 0;
    }

    .footer-section {
        padding-bottom: 40px;
    }

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

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

    .footer-title {
        font-size: var(--fs-title-lg);
    }

    .footer-content {
        text-align: center;
    }

    .footer-text {
        max-width: 100%;
    }

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

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 100svh;
        background-position: 65% center;
    }

    .hero-title {
        font-size: 2.9rem;
        line-height: 0.98;
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .hero-btn {
        min-height: 50px;
        padding: 0 22px;
        font-size: var(--fs-btn-sm);
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        max-width: 320px;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-text,
    .about-content p,
    .team-content,
    .course-list,
    .experience-text,
    .safeguarding-text {
        font-size: 0.95rem;
    }

    .hero-btn,
    .courses-cta-btn,
    .footer-btn,
    .experience-btn-outline,
    .experience-btn {
        width: 100%;
        min-height: auto;
        padding: 14px 20px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-image img {
        max-width: 90%;
    }

    .team-title {
        font-size: 2.4rem;
    }

    .course-title {
        font-size: 2.6rem;
    }

    .course-image img {
        max-width: 210px;
    }

    .courses-cta-text {
        font-size: 2rem;
    }

    .experience-title {
        font-size: 2.8rem;
    }

    .safeguarding-title {
        font-size: 2.6rem;
    }

    .footer-map {
        margin-top: 50px;
    }

    .footer-map iframe {
        min-height: 300px;
    }

    .footer-legal {
        gap: 8px;
    }

    .to-top-btn {
        width: 46px;
        height: 46px;
        right: 16px;
        bottom: 16px;
        font-size: 24px;
    }
}