/* ========================================
   CSS Variables & Global Styles
   ======================================== */

:root {
    --tc-beige: #f3dfd6;
    --tc-brown-paragraph: #442114;
    --tc-mint: #539f8c;
    --tc-orange: #edaa17;
    --tc-secondary: #cc754f;
    --tc-light-brown: #e7d0c5;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #F3DFD6;
    color: var(--tc-brown-paragraph);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 0;
    max-width: 100vw;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 60px 20px;
    margin: 0;
}

section#from-teacher {
    min-height: auto !important;
    height: auto !important;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Typography */
.section-title {
    font-family: 'Amatic SC', cursive;
    font-size: 56px;
    font-weight: 700;
    line-height: 54px;
    color: var(--tc-mint);
    margin-bottom: 40px;
    text-align: center;
}

.section-title.right-aligned {
    text-align: right;
    max-width: 227px;
    margin-left: auto;
    margin-right: 0;
}

.section-title.left-aligned {
    width: 227px;
    color: var(--tc-mint, #539F8C);
    text-align: right;

    font-family: "Amatic SC", cursive;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;

    margin-top: 150px;
    margin-bottom: 50px;
}

/* From Teacher Section Specific Positioning - Desktop Only */
@media (min-width: 769px) {
    #from-teacher h2 {
        transform: translateX(-391px) translateY(-69px);
    }

    #from-teacher .intro-text {
        transform: translateX(-139px) translateY(-243px);
    }

    #from-teacher .bullet-list p {
        transform: translateX(-137px) translateY(-244px);
    }

    #from-teacher .closing-text {
        transform: translateX(-136px) translateY(-267px);
    }

    /* What This Course Really Is Section - Desktop Positioning */
    /* Column */
    #what-is-course .column {
        transform: none;
    }

    /* Heading */
    #what-is-course h2 {
        transform: none;
    }

    /* Five days */
    #five-days h2 {
        font-size: 56px;
        transform: none;
    }

    #five-days .accordion-grid {
        transform: none;
    }

    #five-days {
        padding-top: 40px !important;
        padding-bottom: 0px !important;
    }

    /* Take home */
    #take-home {
        padding-top: 20px !important;
    }

    /* Cta button */
    #signup .content-wrapper .signup-form .form-row .form-group .cta-button {
        transform: none !important;
    }

    /* Cta button */
    .signup-form .form-group .cta-button {
        transform: none !important;
    }

    /* Signup */
    #signup {
        padding-top: 0px;
        padding-bottom: 0px;
    }

}

p {
    font-size: 18px;
    line-height: 27px;
    margin-top: 0;
    margin-bottom: 10px;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* ========================================
   Intro Section (Hero)
   ======================================== */

.section-intro {
    min-height: 75vh;
    height: 75vh;
    padding: 0;
    overflow: hidden;
    background-color: #F3DFD6;
    position: relative;
    z-index: 1;
}

.background-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    filter: sepia(0.3) brightness(1.1);
    overflow: hidden;
}

.background-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.logo-container {
    position: absolute;
    top: 7vh;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 140px;
    opacity: 1;
    z-index: 10;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.section-intro .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.subtitle {
    position: absolute;
    width: 100%;
    height: 22px;
    top: 32vh;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
    z-index: 10;

    color: var(--tc-brown-paragraph, #442114);
    text-align: center;

    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;

    white-space: nowrap;
    overflow: visible;
}


/* Headline with background boxes */
.headline-wrapper {
    position: absolute;
    width: 100%;
    opacity: 1;
    top: 37vh;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Background boxes that fit text width */
.headline-bg {
    display: inline-block;
    width: fit-content;
    background-color: #F3DFD6;
    padding: 0 15px;
}


.main-headline {
    font-family: 'Amatic SC', cursive;
    font-size: 68px;
    font-weight: 700;
    line-height: 62px;
    color: var(--tc-mint);
    margin: 0;
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
}

/* Description with light beige/pink background */
.description-wrapper {
    position: absolute;
    width: 418px;
    height: auto;
    opacity: 1;
    top: 55vh;
    left: calc(50vw - 209px);
    z-index: 2;
}

.description-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #F3DFD6;
    border-radius: 0px;
    z-index: 1;
}

.description {
    font-size: 18px;
    line-height: 27px;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 15px 25px;
    color: var(--tc-brown-paragraph);
    text-align: center;
}

/* Hero CTA button - only in intro section */
.section-intro .cta-button {
    position: absolute;
    background-color: #EDAA17;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: start;
    text-transform: uppercase;
    width: 295px;
    height: 77px;
    border: none;
    border-radius: 10px;
    opacity: 1;
    top: 68vh;
    left: calc(50vw - 147.5px);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Override CTA inside the signup form (no absolute positioning) */
.signup-form .cta-button,
#signup .cta-button {
    position: static !important;
    background-color: #EDAA17 !important;
    color: #000000 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 10px !important;
    padding: 18px 40px !important;
    margin: 0 auto 4px auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 400px !important;
    border: none !important;
    cursor: pointer !important;
    height: auto !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: background-color 0.3s ease !important;
}

.signup-form .cta-button:hover,
#signup .cta-button:hover {
    background-color: #E89C23 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
}

/* Hide hero button (anchor tag) if it appears outside intro section */
#signup a.cta-button,
section:not(.section-intro) a.cta-button {
    display: none !important;
}

.section-intro .cta-button:hover {
    background-color: #EDAA17;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 170, 23, 0.3);
    opacity: 1;
}

.section-intro .cta-button:active {
    transform: translateY(0);
    opacity: 1;
}

/* List info with rectangle background */
.list-wrapper {
    position: absolute;
    width: 149px;
    height: 30px;
    opacity: 1;
    top: 86vh;
    left: calc(50vw - 74.5px);
    z-index: 10;
}

.list-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #F3DFD6;
    opacity: 1;
    z-index: 1;
}

.list-info {
    font-style: normal;
    font-size: 18px;
    line-height: 27px;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 20px;
    margin-top: 0;
    color: var(--tc-brown-paragraph);
    text-align: left;
    padding: 0;
    width: 100%;
}

/* ========================================
   From Teacher to Teacher Section
   ======================================== */

/* From teacher */
#from-teacher {
    transform: translateX(0px) translateY(0px);
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.section-from-teacher {
    padding: 10px 20px 10px;
    min-height: 0 !important;
    height: auto !important;
    position: relative;
    overflow: visible;
    margin-top: 0;
    margin-bottom: -120px;
    z-index: 3;
}

.tiles-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 871px;
    height: 603px;
    background-image: url('images/andalusi-tiles-tesoro-creator.webp');
    background-repeat: no-repeat;
    background-size: 800px auto;
    background-position: left top;
    transform: translateY(-100px);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.tile {
    display: none;
    background-color: #F3DFD6;
}

.section-from-teacher .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 900px;
    margin-left: calc(871px + 50px);
    margin-right: auto;
    padding-left: 0;
    position: relative;
    z-index: 4;
    transform: translateY(-60px);
}

.section-from-teacher .text-content-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    height: auto;
    min-height: auto;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-from-teacher .text-content {
    max-width: 100%;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.section-from-teacher .intro-text {
    margin-bottom: 40px;
}

.section-from-teacher .bullet-list {
    margin-bottom: 40px;
}

.section-from-teacher .bullet-list p:last-child {
    margin-bottom: 0;
}

.intro-text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.bullet-list {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.bullet-list p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.closing-text {
    margin-top: 40px;
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ========================================
   What This Course Really Is Section
   ======================================== */

.section-what-is {
    position: relative;
    padding: 50px 20px;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.section-what-is .irregular-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

.section-what-is .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    max-width: 1153.042px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 80px 100px 50px 100px;
    box-sizing: border-box;
    background-image: url('images/background-what-this-course-really-is.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-height: fit-content;
    overflow: visible;
}

.section-what-is .two-column {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    min-height: fit-content;
}

.section-what-is .two-column::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -120px;
    right: -120px;
    bottom: -50px;
    width: 456px;
    height: calc(100% + 100px);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    pointer-events: none;
    min-height: 486.822px;
}

.section-what-is .section-title {
    text-align: left;
    margin-bottom: 40px;
    flex-shrink: 0;
    max-width: 450px;
    align-self: flex-start;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.two-column .column {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-self: start;
    display: flex;
    flex-direction: column;
}

.two-column .column>p:first-child {
    margin-top: 0;
}

.two-column .column p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
    margin-top: 0;
}

/* ========================================
   Why It Matters Section
   ======================================== */

.section-why-matters {
    padding: 50px 20px !important;
    text-align: center;
    margin-bottom: 10 !important;
    padding-bottom: 30px !important;
    min-height: auto !important;
    position: relative;
}

#why-matters {
    padding: 80px 20px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    position: relative;
    background-image: url('images/background-what-this-course-really-is.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    overflow: hidden;
}

#why-matters .content-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 2;
    padding: 0 120px 60px 120px;
    border-radius: 40px;
    max-width: 1200px;
    min-height: fit-content;
    overflow: visible;
}

#why-matters .three-column {
    padding-left: 40px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#why-matters .column {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#why-matters .column .bullet-item:last-child {
    margin-bottom: 0 !important;
}

#why-matters .bullet-item:last-child {
    margin-bottom: 0 !important;
}

.subtitle-text {
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--tc-brown-paragraph, #442114);
    font-weight: 400;
}

#why-matters .section-title {
    margin-bottom: 15px;
}

.three-column {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 0;
}

.three-column .spacer {
    width: 20px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.bullet-item:last-child {
    margin-bottom: 0 !important;
}

#why-matters .column .bullet-item:last-child {
    margin-bottom: 0 !important;
}



.bullet-item img {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-item p {
    margin: 0;
    font-size: 18px;
    line-height: 27px;
}

/* ========================================
   What Happens During 5 Days Section
   ======================================== */

.section-five-days {
    padding: 10px 20px 60px !important;
    margin-top: -280px !important;
    padding-top: 0px !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
}

/* Five days */
#five-days {
    transform: translateX(0px) translateY(0px);
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
}

.section-five-days .content-wrapper {
    margin-bottom: 0 !important;
}

.section-five-days .accordion-grid {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#five-days h2 {
    padding-top: 2px;
}

.section-five-days .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.section-five-days .five-days-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: 100%;
    align-items: start;
}

.section-five-days .five-days-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section-five-days .five-days-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.section-five-days .section-title {
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
}

/* Nuevo layout desktop - título centrado arriba */
.section-five-days .five-days-title {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

/* Imagen centrada abarcando ambas columnas */
.section-five-days .five-days-image-full {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
}

.section-five-days .five-days-image-full .five-days-image {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
}

.five-days-subtitle {
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    color: var(--tc-brown-paragraph);
    margin-bottom: 15px;
    max-width: 900px;
    padding: 0;
}

.five-days-image-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}

.five-days-image {
    width: 100%;
    max-width: 850px;
    height: auto;
    border: none;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "day1"
        "day2"
        "day3"
        "day4"
        "day5";
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    align-items: start;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.five-days-right .accordion-grid {
    max-width: 100%;
    width: 100%;
}

.accordion-item[data-day="1"] {
    grid-area: day1;
}

.accordion-item[data-day="2"] {
    grid-area: day2;
}

.accordion-item[data-day="3"] {
    grid-area: day3;
}

.accordion-item[data-day="4"] {
    grid-area: day4;
}

.accordion-item[data-day="5"] {
    grid-area: day5;
}

.accordion-item {
    background-color: #f4dfd6;
    border: 5px solid var(--tc-mint);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#five-days .accordion-item:last-child {
    margin-bottom: 0 !important;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    color: var(--tc-secondary);
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.accordion-grid .accordion-item span {
    font-size: 20px;
}

.accordion-header:hover {
    background-color: none;
}

.accordion-header .arrow {
    width: 38px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
    box-sizing: border-box;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 10px 30px 30px;
    overflow: visible;
    display: block;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    font-size: 18px;
    line-height: 27px;
    color: var(--tc-brown-paragraph);
    margin: 0;
    padding: 0;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.inline-check {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

/* ========================================
   What You Take Home Section
   ======================================== */

.section-take-home {
    position: relative;
    padding: 30px 20px 20px 20px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: center;
    overflow: hidden;
    background-color: #F3DFD6;
}

.what-you-take {
    position: relative;
    padding: 0;
    padding-bottom: 0 !important;
    min-height: auto;
    margin: 0 auto;
    max-width: 1400px;
}

.section-take-home .content-wrapper {
    border-radius: 40px;
    padding: 30px 80px 80px 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.checklist {
    width: 468px;
    max-width: 468px;
    margin: 20px auto 0;
    padding-bottom: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 0;
}

.checklist-item img {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item p {
    margin: 0;
    font-size: 20px;
    line-height: 25px;
    color: var(--tc-brown-paragraph);
}

.checklist-item:last-child p {
    white-space: normal;
    max-width: 100%;
}

/* ========================================
   Why Andalusia & Why Tesoro Section
   ======================================== */

.section-why-both {
    padding: 50px 20px;
    position: relative;
    background-color: #F3DFD6;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-why-both .content-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.tiles-background-left {
    position: absolute;
    left: 0;
    top: -100px;
    bottom: 0;
    width: auto;
    max-width: 200px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.tiles-background-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.tiles-background-right {
    position: absolute;
    right: 0;
    top: -100px;
    bottom: 0;
    width: auto;
    max-width: 200px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.tiles-background-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.two-column-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
    width: 73%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    justify-items: center;
    height: auto;
    overflow: visible;
}

.why-tesoro-left,
.why-tesoro-right {
    max-width: 491px;
    width: 100%;
}

.why-tesoro-left .section-title {
    text-align: left;
    margin-bottom: 30px;
    color: var(--tc-mint);
}

.why-tesoro-left p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
    color: var(--tc-brown-paragraph);
    text-align: left;
}

.why-tesoro-left p:last-child {
    margin-bottom: 0;
}

.why-tesoro-right {
    text-align: left;
}

.method-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--tc-brown-paragraph);
    margin-bottom: 20px;
    text-align: left;
}

.why-tesoro-right p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
    color: var(--tc-brown-paragraph);
    text-align: left;
}

.why-tesoro-right p:last-child {
    margin-bottom: 0;
}

.why-tesoro-right p+p {
    margin-top: 0;
}

.features {
    display: flex;
    gap: 55px;
    margin: 20px 0 12px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature span {
    font-size: 20px;
    font-weight: 700;
    color: var(--tc-brown-paragraph);
    text-align: center;
}

/* ========================================
   Practical Information Section
   ======================================== */

.section-practical-info {
    padding: 20px 20px 40px 20px;
    position: relative;
    min-height: auto;
    z-index: 5;
    /* ensure dropdown overlays following section */
}

.irregular-background-bottom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    height: auto;
    min-height: 500px;
    background-image: url('images/practical-information-box-tesoro-creator.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    z-index: 1;
}

.section-practical-info .content-wrapper {
    border-radius: 40px;
    padding: 100px 80px 80px 80px;
    width: 73%;
    max-width: 1400px;
    position: relative;
    z-index: 6;
    /* keep dropdown above signup fields */
    margin: 0 auto;
}

.section-practical-info .section-title {
    margin-bottom: -30px !important;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin: 60px auto 40px;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.info-item {
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 57.31px;
    height: 53.87px;
    margin: 0 auto 18px;
}

.info-item h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
    margin: 0 0 18px;
    color: var(--tc-brown-paragraph);
}

.info-item p {
    font-size: 18px;
    line-height: 27px;
}

.arrow-icon {
    height: 12px;
    width: auto;
    vertical-align: middle;
    margin-left: 6px;
}

.check-dates-link .arrow-icon {
    color: #442114;
    height: 16px;
}

.info-item .check-dates-link {
    display: inline-flex;
    align-items: center;
}

.info-item .check-dates-link .underlined-text {
    color: #442114 !important;
}

.check-dates-link {
    cursor: pointer;
}

.check-dates-link .arrow-icon {
    transition: transform 0.3s ease;
}

.check-dates-link.active .arrow-icon {
    transform: rotate(90deg);
}

.dates-wrapper {
    position: relative;
    display: inline-block;
    z-index: 9999;
}

.dates-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    margin-top: 10px;
    padding: 15px 20px;
    background-color: #faf5f2;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    min-width: 180px;
}

.dates-dropdown.show {
    display: block;
}

.dates-group-title {
    font-weight: 700;
    color: var(--tc-brown-paragraph);
    margin: 0 0 8px 0;
    font-size: 16px;
}

.dates-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.dates-list:last-child {
    margin-bottom: 0;
}

.dates-list li {
    padding: 4px 0;
    color: var(--tc-brown-paragraph);
    font-size: 15px;
}

.underlined-text {
    text-decoration: underline;
}

.link-with-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--tc-mint);
    text-decoration: underline;
    margin-top: 40px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.link-with-arrow:hover {
    opacity: 0.8;
}

.link-with-arrow img {
    width: 22px;
    height: 14px;
}

/* ========================================
   Sign Up Section
   ======================================== */

#signup {
    margin-bottom: 0;
    transform: translateX(0px) translateY(0px);
}

.section-signup {
    padding: 80px 20px;
    position: relative;
    min-height: auto;
    padding-bottom: 0;
}

.beach-section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 200px;
    margin-top: -90px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background-image: url('images/illustration-beach-landscape-palms-beach-tesoro-creator-footer.webp');
    background-size: 100% 800px;
    background-repeat: no-repeat;
    background-position: center 10%;
    background-attachment: local;
    z-index: 1;
    min-height: 900px;
}

.beach-section .form-row {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.beach-section .list-info,
.beach-section .cta-button,
.beach-section .checkbox-label,
.beach-section .footer {
    position: relative;
    z-index: 2;
}

#signup .beach-section .form-group.full-width .cta-button {
    margin: 0 0 4px 0 !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

#signup .beach-section .form-group.full-width .list-info {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: block !important;
    font-size: 14px !important;
    margin-top: 15px !important;
}

.section-signup .content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.signup-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.form-row .form-group.full-width {
    grid-column: 1 / -1;
}

.form-row:has(.form-group.full-width) {
    margin-bottom: 25px;
}

/* Asegurar espacio suficiente antes del beach-section para evitar superposición */
.signup-form>.form-row:first-of-type {
    margin-bottom: 110px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.form-group .form-group {
    margin-top: 0;
    margin-bottom: 0;
}

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--tc-brown-paragraph);
    margin-bottom: 8px;
    display: block;
}

.form-group label .optional {
    font-style: italic;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    border: none;
    border-radius: 10px;
    background-color: #E8D3C8;
    color: var(--tc-brown-paragraph);
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #E8D3C8;
    box-shadow: 0 0 0 2px rgba(68, 33, 20, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--tc-brown-paragraph);
    opacity: 0.7;
}

.form-group select {
    appearance: none;
    background-image: url('images/arrow-icon-tesoro-creator.svg');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    cursor: pointer;
    padding-right: 50px;
}

.form-group.full-width select {
    border-radius: 10px;
    padding: 18px 50px 18px 25px;
}

.submit-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-group .cta-button {
    width: 100%;
    max-width: 295px;
    margin: 0;
}

/* Cta button */
#signup .content-wrapper .signup-form .form-row .form-group .cta-button {
    transform: none !important;
    margin-top: 15px !important;
}

/* Cta button */
.signup-form .form-group .cta-button {
    transform: none;
    margin-top: 15px;
}

.list-info {
    font-size: 18px;
    line-height: 1;
    background-color: #F3DFD6;
    padding: 2px 10px;
    display: inline-flex;
    align-items: center;
}

.submit-group .list-info {
    font-size: 18px;
    line-height: 27px;
    background-color: #F3DFD6;
    padding: 5px 10px;
    display: inline-block;
}

/* Signup form paragraph transform */
.signup-form .submit-group p {
    transform: translateX(-31px) translateY(67px);
    width: 42%;
    height: 36px;
    padding-top: 2px;
}

/* ========================================
   Legal Section
   ======================================== */

.section-legal {
    position: relative;
    padding: 80px 20px;
    min-height: auto;
    background-color: var(--tc-beige);
    overflow: visible;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section:last-of-type {
    margin-bottom: 40px;
}

.legal-subtitle {
    font-family: 'Amatic SC', cursive;
    font-size: 42px;
    font-weight: 700;
    line-height: 40px;
    color: var(--tc-mint);
    margin-bottom: 20px;
    text-align: left;
}

.legal-section p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 15px;
    color: var(--tc-brown-paragraph);
}

.legal-section a {
    color: var(--tc-mint);
    text-decoration: underline;
}

.legal-section a:hover {
    opacity: 0.8;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 20px 0;
}

.legal-list li {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 10px;
    color: var(--tc-brown-paragraph);
    padding-left: 25px;
    position: relative;
}

.legal-list li::before {
    content: "•";
    color: var(--tc-mint);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.beach-section-footer {
    position: relative;
    padding-top: 0px;
    padding-bottom: 200px;
    margin-top: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background-image: url('images/illustration-beach-landscape-palms-beach-tesoro-creator-footer.webp');
    background-size: 100% 800px;
    background-repeat: no-repeat;
    background-position: center 10%;
    background-attachment: local;
    z-index: 1;
    min-height: 900px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: transparent;
    padding: 5px 20px 15px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -100px;
    margin-bottom: 0 !important;
}

/* Footer transform */
footer {
    transform: none;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
}

.footer-made-with {
    margin-bottom: 5px;
    color: var(--tc-mint);
    font-size: 16px;
    font-style: italic;
}

.footer-heart-icon {
    height: 14px;
    width: auto;
    vertical-align: middle;
    margin: 0 4px;
}

.footer-credit {
    margin-bottom: 0 !important;
}

.footer-links {
    font-style: normal;
    text-decoration: underline;
}

.footer-links a {
    color: var(--tc-brown-paragraph);
    text-decoration: underline;
}

.footer-credit {
    width: 103% !important;
}

@media (min-width: 481px) {

    /* Cta button */
    .signup-form .form-group .cta-button {
        padding-bottom: 23px;
    }
}

/* ====== Form overrides (user-requested) ====== */
#participants {
    transform: translateX(0px) translateY(-97px);
}

#gdpr-consent {
    width: 20px;
}

.signup-form .form-group .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    transform: none;
    background-color: transparent;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    width: 450px;
}

.signup-form .form-group .checkbox-label .gdpr-text {
    font-style: italic;
    color: var(--tc-brown-paragraph);
    background-color: #F3DFD6;
    padding: 4px 8px;
    display: inline-block;
}

.signup-form .form-group label[for="weeks"],
.signup-form .form-group label[for="motivation"] {
    padding: 5px 10px;
    display: inline-block;
}

.signup-form .form-group label {
    display: inline-block;
    width: 328px;
}

.signup-form .form-group p {
    transform: none;
    width: auto;
    margin-bottom: 15px;
}

.signup-form .list-info label {
    display: inline-block;
    transform: none;
}

#signup .content-wrapper .signup-form .form-row .list-info label {
    width: 100% !important;
}

#motivation {
    width: 333px;
    min-height: 111px;
}

#signup .signup-form .form-row {
    transform: none;
}

/* Keep the submit row visible and spaced */
#signup .signup-form .form-row:last-child {
    margin-top: 20px;
}

.signup-form .submit-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.footer-copyright {
    font-style: italic;
}

.footer-credit {
    font-style: italic;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-intro .content>* {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.subtitle {
    animation-delay: 0.1s;
}

.headline-wrapper {
    animation-delay: 0.3s;
}

.description-wrapper {
    animation-delay: 0.5s;
}

.section-intro .cta-button {
    animation-delay: 0.7s;
}

.list-wrapper {
    animation-delay: 0.9s;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Intermediate breakpoint to prevent title overlap on five-days section */
@media (max-width: 1400px) {
    .section-five-days .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        padding: 0 20px !important;
        align-items: stretch !important;
    }

    .section-five-days .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        grid-column: auto !important;
        grid-row: auto !important;
        margin-bottom: 40px !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        transform: none !important;
        text-align: center !important;
        width: 100% !important;
        order: 1 !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .five-days-subtitle {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 2 !important;
        margin-bottom: 25px !important;
        max-width: 100% !important;
    }

    .five-days-image-wrapper {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 3 !important;
        margin-bottom: 30px !important;
    }

    #five-days h2 {
        transform: none !important;
    }

    #five-days .accordion-grid {
        transform: none !important;
        grid-column: auto !important;
        grid-row: auto !important;
        order: 4 !important;
        margin-top: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .section-five-days .accordion-grid {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "day1"
            "day2"
            "day3"
            "day4"
            "day5" !important;
        display: grid !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-five-days .accordion-item[data-day="1"] {
        grid-area: day1 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .section-five-days .accordion-item[data-day="2"] {
        grid-area: day2 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .section-five-days .accordion-item[data-day="3"] {
        grid-area: day3 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .section-five-days .accordion-item[data-day="4"] {
        grid-area: day4 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .section-five-days .accordion-item[data-day="5"] {
        grid-area: day5 !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }
}

@media (max-width: 1024px) {

    /* ========================================
       GLOBAL TABLET FIXES
       ======================================== */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    section {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    .two-column,
    .two-column-uneven,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ========================================
       INTRO SECTION - Tablet
       ======================================== */
    .section-intro {
        min-height: auto !important;
        height: auto !important;
        padding: 35px 25px 45px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .background-illustration {
        opacity: 0.35 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }

    .logo-container {
        position: relative !important;
        width: 100px !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 18px !important;
        z-index: 10 !important;
        order: 0 !important;
    }

    .section-intro .content {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .subtitle {
        position: relative !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
        letter-spacing: 2px !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 0 22px 0 !important;
        padding: 0 15px !important;
        text-align: center !important;
        color: rgba(68, 33, 20, 0.7) !important;
        opacity: 1 !important;
        white-space: normal !important;
        order: 1 !important;
        font-weight: 400 !important;
    }

    .headline-wrapper {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 0 22px 0 !important;
        padding: 0 20px !important;
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2px !important;
    }

    .headline-bg {
        display: inline-block !important;
        background-color: transparent !important;
        padding: 0 !important;
    }

    .main-headline {
        font-size: 52px !important;
        line-height: 48px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        margin: 0 0 2px 0 !important;
        font-weight: 700 !important;
        color: var(--tc-mint, #539f8c) !important;
        white-space: normal !important;
    }

    .description-wrapper {
        position: relative !important;
        width: 100% !important;
        max-width: 480px !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto 28px !important;
        padding: 0 20px !important;
        order: 3 !important;
    }

    .description-bg {
        display: none !important;
    }

    .description {
        font-size: 17px !important;
        line-height: 1.55 !important;
        padding: 0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .section-intro .cta-button {
        position: relative !important;
        order: 4 !important;
    }

    .section-intro .list-wrapper {
        order: 5 !important;
    }

    .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    /* ========================================
       FROM TEACHER TO TEACHER SECTION - Tablet
       ======================================== */
    section#from-teacher {
        min-height: auto !important;
        height: auto !important;
    }

    #from-teacher {
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 0 !important;
    }

    .section-from-teacher {
        padding: 40px 25px 50px !important;
        overflow: hidden !important;
        min-height: auto !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-bottom: 0 !important;
    }

    .tiles-background {
        display: none !important;
    }

    .section-from-teacher .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto !important;
        max-width: 550px !important;
        width: 100% !important;
        transform: none !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 2 !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .section-from-teacher .text-content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 2 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 0 !important;
    }

    .section-from-teacher .text-content {
        position: relative !important;
        z-index: 2 !important;
        overflow: visible !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .section-title.left-aligned {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto 22px !important;
        transform: none !important;
        font-size: 50px !important;
        line-height: 48px !important;
    }

    #from-teacher h2 {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #from-teacher .intro-text {
        transform: none !important;
        margin: 0 0 20px 0 !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
    }

    #from-teacher .bullet-list {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        text-align: left !important;
    }

    #from-teacher .bullet-list p {
        transform: none !important;
        margin: 0 0 10px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
        text-align: left !important;
    }

    #from-teacher .closing-text {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
        font-size: 17px !important;
        line-height: 1.55 !important;
        text-align: left !important;
    }

    .section-from-teacher .text-content p,
    .section-from-teacher .text-content .intro-text,
    .section-from-teacher .text-content .bullet-list p,
    .section-from-teacher .text-content .closing-text {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }

    /* ========================================
       FIVE DAYS SECTION - Tablet
       ======================================== */
    .section-five-days {
        padding: 35px 0 50px !important;
        margin-top: 0 !important;
    }

    .section-five-days .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        padding: 0 25px !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }

    .section-five-days .five-days-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        order: 3 !important;
    }

    .section-five-days .five-days-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        order: 1 !important;
    }

    .section-five-days .five-days-right {
        order: 2 !important;
    }

    .section-five-days .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        grid-column: auto !important;
        grid-row: auto !important;
        margin-bottom: 20px !important;
        transform: none !important;
        text-align: center !important;
        width: 100% !important;
        order: 1 !important;
    }

    /* Image - after title */
    .five-days-image-wrapper {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 2 !important;
        margin-bottom: 20px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .five-days-image {
        border-radius: 15px !important;
        max-width: 100% !important;
    }

    /* First subtitle - "How the experience... Places, people..." */
    .five-days-subtitle:first-of-type {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 1 !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.55 !important;
        text-align: left !important;
    }

    /* Second subtitle - "Set in Torre del Mar..." */
    .five-days-subtitle:last-of-type {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 2 !important;
        margin-bottom: 25px !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.55 !important;
        text-align: left !important;
    }

    .section-five-days .five-days-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        order: 1 !important;
    }

    .section-five-days .five-days-right {
        order: 2 !important;
    }

    #five-days h2 {
        transform: none !important;
        font-size: 50px !important;
        text-align: center !important;
    }

    #five-days .accordion-grid {
        transform: none !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .section-five-days .accordion-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .section-five-days .accordion-item[data-day="1"],
    .section-five-days .accordion-item[data-day="2"],
    .section-five-days .accordion-item[data-day="3"],
    .section-five-days .accordion-item[data-day="4"],
    .section-five-days .accordion-item[data-day="5"] {
        grid-column: 1 !important;
        grid-row: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    #five-days .accordion-header {
        font-size: 22px !important;
        line-height: 1.35 !important;
        padding: 15px 18px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    #five-days .accordion-grid .accordion-item span {
        font-size: 16px !important;
    }

    #five-days .accordion-content p {
        font-size: 16px !important;
        line-height: 1.55 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #five-days .accordion-content .inline-check {
        width: 16px !important;
        height: 16px !important;
        vertical-align: middle !important;
        margin-right: 6px !important;
        display: inline-block !important;
        flex-shrink: 0 !important;
    }

    #five-days .accordion-content {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .tiles-background-right {
        display: none;
    }

    /* Why Andalusia & Why Tesoro - Responsive */
    #why-andalusia-tesoro {
        height: auto !important;
        min-height: auto !important;
        /* prevent full-viewport stretch on tablets */
        padding: 40px 20px !important;
        /* was 60px 20px */
    }

    #why-andalusia-tesoro .why-tesoro {
        width: 100% !important;
        transform: none !important;
        position: relative !important;
        padding: 0 30px 50px 30px !important;
        box-sizing: border-box !important;
    }

    #why-andalusia-tesoro .why-tesoro .section-title {
        margin-bottom: 30px !important;
        padding-top: 50px !important;
        position: relative !important;
        z-index: 2 !important;
    }

    #why-andalusia-tesoro .why-tesoro::after {
        content: '';
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/background-what-this-course-really-is.svg') !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        z-index: 1;
        pointer-events: none;
    }

    #why-andalusia-tesoro .why-tesoro .section-title,
    #why-andalusia-tesoro .why-tesoro p,
    #why-andalusia-tesoro .why-tesoro .features {
        position: relative !important;
        z-index: 2 !important;
    }

    #why-andalusia-tesoro .why-tesoro p,
    #why-andalusia-tesoro .why-tesoro .features {
        padding: 0 30px !important;
    }

    #why-andalusia-tesoro .tiles-background-right img {
        transform: none !important;
    }

    #why-andalusia-tesoro .why-andalusia {
        transform: none !important;
        height: auto !important;
        position: relative !important;
    }

    #why-andalusia-tesoro .why-andalusia .section-title {
        margin-bottom: 30px !important;
    }

    #why-andalusia-tesoro .why-andalusia::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/practical-information-box-tesoro-creator.svg') !important;
        background-repeat: no-repeat !important;
        background-size: contain !important;
        background-position: center !important;
        z-index: 1;
        pointer-events: none;
    }

    #why-andalusia-tesoro .why-andalusia p {
        position: relative !important;
        z-index: 2 !important;
        padding: 0 30px !important;
        margin-bottom: 20px !important;
    }

    #why-andalusia-tesoro .why-andalusia p:first-of-type {
        padding-top: 50px !important;
    }

    #why-andalusia-tesoro .why-andalusia p:last-of-type {
        padding-bottom: 70px !important;
        margin-bottom: 0 !important;
    }

    #why-andalusia-tesoro .why-andalusia .section-title {
        position: relative !important;
        z-index: 2 !important;
    }

    #why-andalusia-tesoro .tiles-background-right {
        transform: none !important;
        display: none !important;
    }

    #why-andalusia-tesoro .why-tesoro .features {
        width: 100% !important;
    }

    .two-column-uneven {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .why-andalusia .section-title,
    .why-tesoro .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .why-tesoro p,
    .why-andalusia p {
        margin-bottom: 20px !important;
        line-height: 1.7 !important;
    }

    .why-tesoro p:last-child,
    .why-andalusia p:last-child {
        margin-bottom: 0 !important;
    }

    .section-title.right-aligned {
        font-size: 42px !important;
        line-height: 1.2 !important;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }

    .accordion-item[data-day="1"],
    .accordion-item[data-day="2"],
    .accordion-item[data-day="3"],
    .accordion-item[data-day="4"],
    .accordion-item[data-day="5"] {
        grid-column: 1 !important;
        grid-row: auto !important;
        display: block !important;
        width: 100% !important;
    }

    /* ========================================
       THE NATURE OF THE COURSE SECTION - Tablet
       ======================================== */
    .section-what-is {
        padding: 40px 20px !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .section-what-is .irregular-background {
        display: none !important;
    }

    .section-what-is .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 550px !important;
        margin: 0 auto !important;
        padding: 50px 40px 60px !important;
        transform: none !important;
        background-image: url('images/background-what-this-course-really-is.svg') !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        position: relative !important;
    }

    .section-what-is .two-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        position: relative !important;
    }

    .section-what-is .two-column::before {
        display: none !important;
    }

    .section-what-is .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 18px !important;
        text-align: center !important;
    }

    #what-is-course h2 {
        transform: none !important;
        position: relative !important;
    }

    #what-is-course .column {
        transform: none !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-what-is .column p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
        text-align: left !important;
    }

    .section-what-is .column p:last-child {
        margin-bottom: 0 !important;
    }

    /* ========================================
       WHAT YOU TAKE HOME SECTION - Tablet
       ======================================== */
    #take-home {
        padding: 35px 20px !important;
        min-height: auto !important;
    }

    .section-take-home {
        padding: 35px 20px !important;
        min-height: auto !important;
    }

    .what-you-take {
        padding: 0 !important;
    }

    #take-home .what-you-take .content-wrapper,
    .section-take-home .content-wrapper {
        padding: 35px 30px 40px !important;
        max-width: 550px !important;
        margin: 0 auto !important;
        border-radius: 25px !important;
    }

    .section-take-home .section-title,
    #take-home .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .checklist {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .checklist-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: flex-start !important;
    }

    .checklist-item img {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
        margin-top: 2px !important;
    }

    .checklist-item p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin: 0 !important;
    }

    /* ========================================
       THE IMPACT SECTION - Tablet
       ======================================== */
    #why-matters {
        padding: 40px 30px !important;
        min-height: auto !important;
        background-image: none !important;
        background: transparent !important;
    }

    .section-why-matters {
        padding: 40px 30px !important;
        min-height: auto !important;
    }

    #why-matters .content-wrapper {
        padding: 40px 35px 45px !important;
        max-width: 550px !important;
        margin: 0 auto !important;
        border-radius: 25px !important;
        background-image: url('images/background-what-this-course-really-is.svg') !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    #why-matters .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        text-align: center !important;
        margin-bottom: 18px !important;
    }

    #why-matters .subtitle-text {
        color: #442114 !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    #why-matters .three-column {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px 25px !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    #why-matters .three-column .spacer {
        display: none !important;
    }

    #why-matters .column {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    #why-matters .bullet-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
        justify-content: flex-start !important;
    }

    #why-matters .bullet-item img {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
        margin-top: 2px !important;
    }

    #why-matters .bullet-item p {
        font-size: 15px !important;
        line-height: 1.45 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    #why-matters .column .bullet-item:last-child {
        margin-bottom: 0 !important;
    }

    /* ========================================
       WHY TESORO SECTION - Tablet
       ======================================== */
    #why-andalusia-tesoro {
        height: auto !important;
        min-height: auto !important;
        padding: 40px 30px !important;
    }

    .section-why-both {
        padding: 40px 30px !important;
        min-height: auto !important;
    }

    .tiles-background-left,
    .tiles-background-right,
    #why-andalusia-tesoro .tiles-background-left,
    #why-andalusia-tesoro .tiles-background-right {
        display: none !important;
    }

    /* Single column layout */
    .two-column-equal {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 550px !important;
        margin: 0 auto !important;
        padding: 40px 35px !important;
        background-image: url('images/background-what-this-course-really-is.svg') !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        border-radius: 25px !important;
        box-sizing: border-box !important;
    }

    .why-tesoro-left,
    .why-tesoro-right {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .why-tesoro-left .section-title,
    #why-andalusia-tesoro .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .why-tesoro-left p,
    .why-tesoro-right p {
        font-size: 16px !important;
        line-height: 1.55 !important;
        margin-bottom: 16px !important;
        text-align: left !important;
    }

    .why-tesoro-left p:last-child,
    .why-tesoro-right p:last-child {
        margin-bottom: 0 !important;
    }

    /* Method subtitle styling */
    .method-subtitle {
        font-size: 17px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    /* Features - horizontal row */
    .features {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 25px !important;
        margin: 15px auto 20px !important;
        max-width: 100% !important;
    }

    .feature {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
    }

    .feature-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .feature-icon img {
        width: 100% !important;
        height: 100% !important;
    }

    .feature span {
        font-size: 14px !important;
        text-align: center !important;
        color: var(--tc-brown-paragraph) !important;
    }

    /* ========================================
       PRACTICAL INFORMATION SECTION - Tablet
       ======================================== */
    #practical-info {
        padding: 40px 30px !important;
        min-height: auto !important;
    }

    .section-practical-info {
        padding: 40px 30px !important;
        min-height: auto !important;
        position: relative !important;
    }

    /* Hide the old background element */
    .irregular-background-bottom {
        display: none !important;
    }

    .section-practical-info .content-wrapper {
        padding: 45px 35px 50px !important;
        width: calc(100% - 60px) !important;
        max-width: 550px !important;
        margin: 0 auto !important;
        border-radius: 25px !important;
        background-image: none !important;
        position: relative !important;
        z-index: 2 !important;
        overflow: visible !important;
    }

    .section-practical-info .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .info-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        margin: 25px 0 !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .info-item {
        width: 100% !important;
        text-align: center !important;
        position: relative !important;
    }

    .info-item:has(.dates-dropdown.show) {
        z-index: 10003 !important;
    }

    .info-icon {
        width: 50px !important;
        height: 47px !important;
        margin: 0 auto 14px !important;
    }

    .info-item h3 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin: 0 0 12px !important;
        text-align: center !important;
    }

    .info-item p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }

    .info-item p:last-child {
        margin-bottom: 0 !important;
    }

    /* Dates dropdown styling */
    .dates-wrapper {
        text-align: center !important;
        position: relative !important;
        display: inline-block !important;
        overflow: visible !important;
        z-index: 10001 !important;
    }

    .check-dates-link {
        justify-content: center !important;
        font-size: 15px !important;
    }

    .dates-dropdown {
        max-width: 100% !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 100% !important;
        margin-top: 10px !important;
        width: calc(100vw - 50px) !important;
        max-width: 320px !important;
        z-index: 10004 !important;
        box-sizing: border-box !important;
        background-color: #faf5f2 !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        padding: 15px 20px !important;
    }

    .dates-dropdown.show {
        display: block !important;
    }

    .dates-list {
        padding: 15px !important;
    }

    .dates-group-title {
        font-size: 14px !important;
    }

    /* ========================================
       SIGN UP SECTION - Tablet
       ======================================== */
    #signup {
        padding: 35px 25px 0 !important;
        min-height: auto !important;
        margin-bottom: 0 !important;
    }

    .section-signup {
        padding: 35px 25px 0 !important;
        min-height: auto !important;
    }

    .section-signup .content-wrapper {
        max-width: 500px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .section-signup .section-title {
        font-size: 50px !important;
        line-height: 48px !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .beach-section {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        padding-bottom: 120px !important;
        min-height: auto !important;
        background-size: 100% auto !important;
        background-position: center bottom !important;
        background-attachment: local !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .signup-form {
        margin-top: 20px !important;
        width: 100% !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        margin-bottom: 18px !important;
    }

    .form-group {
        width: 100% !important;
    }

    .signup-form .form-group label {
        display: block !important;
        width: 100% !important;
        margin-bottom: 8px !important;
        font-size: 15px !important;
        transform: none !important;
        text-align: left !important;
    }

    .signup-form .form-group input,
    .signup-form .form-group select,
    .signup-form .form-group textarea {
        width: 100% !important;
        padding: 14px 16px !important;
        font-size: 16px !important;
        transform: none !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    .signup-form .form-group select {
        padding-right: 40px !important;
    }

    /* List info */
    .signup-form .form-group p.list-info {
        font-size: 16px !important;
        text-align: center !important;
        margin: 18px 0 12px !important;
    }

    /* Checkbox and GDPR styling */
    .signup-form .form-group .checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 12px 0 18px !important;
        transform: none !important;
        justify-content: flex-start !important;
    }

    .signup-form .form-group .checkbox-label input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

    .signup-form .form-group .checkbox-label .gdpr-text {
        font-size: 14px !important;
        line-height: 1.45 !important;
        text-align: left !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* CTA Button */
    .signup-form .cta-button,
    #signup .cta-button {
        transform: none !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 15px 0 0 !important;
        display: block !important;
        font-size: 17px !important;
        padding: 15px 25px !important;
        border-radius: 10px !important;
    }

    /* ========================================
       LEGAL SECTION - Tablet
       ======================================== */
    .section-legal {
        padding: 50px 20px !important;
    }

    .legal-content {
        max-width: 100% !important;
    }

    .legal-section {
        margin-bottom: 40px !important;
    }

    .legal-subtitle {
        font-size: 38px !important;
        line-height: 36px !important;
        margin-bottom: 18px !important;
    }

    .legal-section p {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 12px !important;
    }

    .legal-list li {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 8px !important;
    }

    .beach-section-footer {
        padding-top: 100px !important;
        padding-bottom: 200px !important;
        margin: 0 !important;
        width: 100% !important;
        min-height: auto !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        background-attachment: local !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* ========================================
       FOOTER - Tablet
       ======================================== */
    .footer {
        padding: 18px 20px 25px !important;
        margin-top: 0 !important;
        background-color: transparent !important;
    }

    .footer-content {
        max-width: 500px !important;
        margin: 0 auto !important;
    }

    .footer p {
        font-size: 13px !important;
        line-height: 1.45 !important;
        margin-bottom: 5px !important;
        text-align: center !important;
    }

    .footer-made-with {
        font-size: 14px !important;
        text-align: center !important;
    }

    .footer-heart-icon {
        height: 13px !important;
    }

    .footer-links a {
        font-size: 13px !important;
    }

    .footer-copyright {
        font-size: 12px !important;
        text-align: center !important;
    }

    .footer-credit {
        font-size: 12px !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* What you take */
#take-home {
    padding-bottom: 30px !important;
    min-height: auto !important;
}

#take-home .what-you-take {
    padding-bottom: 0px;
}

/* Practical info */
#practical-info {
    transform: translatex(0px) translatey(0px);
}

@media (max-width: 768px) {

    /* ========================================
       GLOBAL MOBILE FIXES - Prevent horizontal scroll
       ======================================== */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    section {
        padding: 40px 20px !important;
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    /* ========================================
       INTRO SECTION - Mobile
       ======================================== */
    .section-intro {
        min-height: auto !important;
        height: auto !important;
        padding: 30px 20px 40px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .background-illustration {
        opacity: 0.3 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }

    .logo-container {
        position: relative !important;
        width: 90px !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 auto 15px !important;
        z-index: 10 !important;
        order: 0 !important;
    }

    .section-intro .content {
        position: relative !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .subtitle {
        position: relative !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
        letter-spacing: 1.5px !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 0 20px 0 !important;
        padding: 0 10px !important;
        text-align: center !important;
        color: rgba(68, 33, 20, 0.7) !important;
        opacity: 1 !important;
        white-space: normal !important;
        order: 1 !important;
        font-weight: 400 !important;
    }

    .headline-wrapper {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 0 20px 0 !important;
        padding: 0 15px !important;
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2px !important;
    }

    .headline-bg {
        display: inline-block !important;
        background-color: transparent !important;
        padding: 0 !important;
    }

    .main-headline {
        font-size: 52px !important;
        line-height: 48px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        margin: 0 0 2px 0 !important;
        font-weight: 700 !important;
        color: var(--tc-mint, #539f8c) !important;
        white-space: normal !important;
    }

    .description-wrapper {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 0 25px 0 !important;
        padding: 0 15px !important;
        order: 3 !important;
    }

    .description-bg {
        display: none !important;
    }

    .description {
        font-size: 16px !important;
        line-height: 1.5 !important;
        padding: 0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .section-intro .cta-button {
        position: relative !important;
        order: 4 !important;
    }

    .section-intro .list-wrapper {
        order: 5 !important;
    }

    .cta-button {
        position: relative !important;
        width: 100% !important;
        max-width: 260px !important;
        height: auto !important;
        min-height: 55px !important;
        font-size: 16px !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto 15px !important;
    }

    .list-wrapper {
        position: relative !important;
        width: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto !important;
    }

    .list-bg {
        display: none !important;
    }

    .list-info {
        color: #442114 !important;
        font-size: 14px !important;
        line-height: 20px !important;
        text-align: center !important;
    }

    .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        text-align: center !important;
    }

    /* ========================================
       FROM TEACHER TO TEACHER SECTION - Mobile
       ======================================== */
    section#from-teacher {
        min-height: auto !important;
        height: auto !important;
    }

    #from-teacher {
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 0 !important;
    }

    .section-from-teacher {
        padding: 40px 20px 60px !important;
        overflow: hidden !important;
        min-height: auto !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-bottom: 0 !important;
    }

    .tiles-background {
        display: none !important;
    }

    .section-from-teacher .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        transform: none !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 2 !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .section-from-teacher .text-content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 2 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 0 !important;
    }

    .section-from-teacher .text-content {
        position: relative !important;
        z-index: 2 !important;
        overflow: visible !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .section-title.left-aligned {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto 25px !important;
        transform: none !important;
        font-size: 46px !important;
        line-height: 44px !important;
    }

    #from-teacher h2 {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #from-teacher .intro-text {
        transform: none !important;
        margin: 0 0 20px 0 !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    #from-teacher .bullet-list {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        text-align: left !important;
    }

    #from-teacher .bullet-list p {
        transform: none !important;
        margin: 0 0 10px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    #from-teacher .closing-text {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    .section-from-teacher .text-content p,
    .section-from-teacher .text-content .intro-text,
    .section-from-teacher .text-content .bullet-list p,
    .section-from-teacher .text-content .closing-text {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }

    /* ========================================
       WHAT YOU TAKE HOME SECTION - Mobile
       ======================================== */
    #take-home {
        padding: 30px 15px !important;
        min-height: auto !important;
    }

    .section-take-home {
        padding: 30px 15px !important;
        min-height: auto !important;
    }

    .what-you-take {
        padding: 0 !important;
    }

    #take-home .what-you-take .content-wrapper,
    .section-take-home .content-wrapper {
        padding: 25px 20px 30px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
    }

    .section-take-home .section-title,
    #take-home .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .checklist {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .checklist-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    .checklist-item img {
        flex-shrink: 0 !important;
        width: 20px !important;
        height: 20px !important;
        margin-top: 2px !important;
    }

    .checklist-item p {
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }

    /* ========================================
       OTHER SECTIONS - Mobile fixes
       ======================================== */
    /* Andalusia tesoro */
    #why-andalusia-tesoro {
        padding-top: 0px !important;
    }

    /* ========================================
       PRACTICAL INFORMATION SECTION - Mobile
       ======================================== */
    #practical-info {
        padding: 30px 15px !important;
        min-height: auto !important;
    }

    .section-practical-info {
        padding: 30px 15px !important;
        min-height: auto !important;
    }

    /* Background image - hidden on mobile */
    .irregular-background-bottom {
        display: none !important;
    }

    .section-practical-info .content-wrapper {
        padding: 25px 20px 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }

    .section-practical-info .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .info-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        margin: 20px 0 !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .info-item {
        width: 100% !important;
        text-align: center !important;
        position: relative !important;
    }

    .info-item:has(.dates-dropdown.show) {
        z-index: 10003 !important;
    }

    .info-icon {
        width: 45px !important;
        height: 42px !important;
        margin: 0 auto 12px !important;
    }

    .info-item h3 {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin: 0 0 10px !important;
        text-align: center !important;
    }

    .info-item p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }

    .info-item p:last-child {
        margin-bottom: 0 !important;
    }

    /* Dates dropdown styling */
    .dates-wrapper {
        text-align: center !important;
        position: relative !important;
        display: inline-block !important;
        overflow: visible !important;
        z-index: 10001 !important;
    }

    .check-dates-link {
        justify-content: center !important;
    }

    .dates-dropdown {
        text-align: center !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 100% !important;
        margin-top: 10px !important;
        width: calc(100vw - 40px) !important;
        max-width: 300px !important;
        z-index: 10004 !important;
        box-sizing: border-box !important;
        background-color: #faf5f2 !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        padding: 15px 20px !important;
    }

    .dates-dropdown.show {
        display: block !important;
    }

    .dates-list {
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
    }

    .dates-list li {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .dates-group-title {
        font-size: 15px !important;
        margin: 10px 0 5px !important;
    }

    /* ========================================
       THE IMPACT SECTION - Mobile
       ======================================== */
    #why-matters {
        padding: 30px 15px !important;
        min-height: auto !important;
        background-size: auto 100% !important;
        background-position: center center !important;
    }

    .section-why-matters {
        padding: 30px 15px !important;
        min-height: auto !important;
    }

    #why-matters .content-wrapper {
        padding: 25px 20px 30px !important;
        max-width: 100% !important;
        border-radius: 20px !important;
    }

    #why-matters .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .subtitle-text {
        color: #442114 !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
        opacity: 1 !important;
        font-weight: 400 !important;
        text-align: center !important;
    }

    #why-matters .three-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    #why-matters .three-column .spacer {
        display: none !important;
    }

    #why-matters .column {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    #why-matters .bullet-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
        justify-content: flex-start !important;
        padding-left: 10px !important;
    }

    #why-matters .bullet-item img {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0 !important;
        margin-top: 1px !important;
    }

    #why-matters .bullet-item p {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    #why-matters .column .bullet-item:last-child {
        margin-bottom: 12px !important;
    }

    #why-matters .column:last-child .bullet-item:last-child {
        margin-bottom: 0 !important;
    }

    /* ========================================
       FIVE DAYS SECTION - Mobile
       ======================================== */
    .section-five-days {
        padding: 40px 0 60px !important;
    }

    .section-five-days .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 20px !important;
    }

    .section-five-days .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        grid-column: auto !important;
        grid-row: auto !important;
        margin-bottom: 20px !important;
        transform: none !important;
        text-align: center !important;
        width: 100% !important;
        order: 1 !important;
    }

    /* Image - after title */
    .five-days-image-wrapper {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 2 !important;
        margin-bottom: 20px !important;
    }

    .five-days-image {
        border-width: 4px !important;
        border-radius: 0 !important;
    }

    /* First subtitle - "How the experience... Places, people..." */
    .five-days-subtitle:first-of-type {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 1 !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    /* Second subtitle - "Set in Torre del Mar..." */
    .five-days-subtitle:last-of-type {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 2 !important;
        margin-bottom: 20px !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    .section-five-days .five-days-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        order: 3 !important;
    }

    .section-five-days .five-days-left {
        order: 1 !important;
    }

    .section-five-days .five-days-right {
        order: 2 !important;
    }

    #five-days h2 {
        font-size: 46px !important;
        transform: none !important;
    }

    .section-five-days .accordion-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        grid-column: auto !important;
        grid-row: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }

    #five-days .accordion-grid {
        transform: none !important;
    }

    .section-five-days .accordion-item[data-day="1"],
    .section-five-days .accordion-item[data-day="2"],
    .section-five-days .accordion-item[data-day="3"],
    .section-five-days .accordion-item[data-day="4"],
    .section-five-days .accordion-item[data-day="5"] {
        grid-column: 1 !important;
        grid-row: auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }

    #five-days .accordion-header {
        font-size: 22px !important;
        line-height: 1.3 !important;
        padding: 15px !important;
        white-space: normal !important;
        align-items: center !important;
    }

    #five-days .accordion-grid .accordion-item span {
        font-size: 15px !important;
    }

    #five-days .accordion-item {
        overflow: hidden !important;
        margin-bottom: 0 !important;
        position: relative !important;
        display: block !important;
    }

    #five-days .accordion-content {
        padding: 0 15px !important;
        max-height: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        visibility: hidden !important;
    }

    #five-days .accordion-item.active .accordion-content {
        max-height: 2400px !important;
        padding: 0 15px 20px !important;
        overflow: visible !important;
        display: block !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        visibility: visible !important;
    }

    #five-days .accordion-content p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #five-days .accordion-content .inline-check {
        width: 16px !important;
        height: 16px !important;
        vertical-align: middle !important;
        margin-right: 6px !important;
        display: inline-block !important;
        flex-shrink: 0 !important;
    }

    #five-days .accordion-content {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* ========================================
       SIGNUP SECTION - Mobile
       ======================================== */
    #signup {
        margin-bottom: 0 !important;
        transform: none !important;
    }

    /* ========================================
       SIGN UP SECTION - Mobile
       ======================================== */
    #signup {
        padding: 30px 15px 40px !important;
        min-height: auto !important;
    }

    .section-signup {
        padding: 30px 15px 40px !important;
        min-height: auto !important;
    }

    .section-signup .content-wrapper {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .section-signup .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .beach-background {
        display: none !important;
    }

    .beach-section {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        padding-bottom: 100px !important;
        min-height: auto !important;
        background-size: 100% auto !important;
        background-position: center bottom !important;
        background-attachment: local !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .signup-form {
        margin-top: 15px !important;
        width: 100% !important;
    }

    /* ========================================
       LEGAL SECTION - Mobile
       ======================================== */
    .section-legal {
        padding: 40px 15px !important;
    }

    .legal-content {
        max-width: 100% !important;
    }

    .legal-section {
        margin-bottom: 35px !important;
    }

    .legal-subtitle {
        font-size: 36px !important;
        line-height: 34px !important;
        margin-bottom: 15px !important;
    }

    .legal-section p {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-bottom: 12px !important;
    }

    .legal-list li {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-bottom: 8px !important;
    }

    .beach-section-footer {
        padding-top: 80px !important;
        padding-bottom: 180px !important;
        margin: 0 !important;
        width: 100% !important;
        min-height: auto !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        background-attachment: local !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Footer - Mobile */
    .footer {
        padding: 15px 15px 20px !important;
        margin-top: 0 !important;
        background-color: transparent !important;
    }

    .footer-content {
        max-width: 100% !important;
    }

    .footer p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 4px !important;
    }

    .footer-made-with {
        font-size: 13px !important;
    }

    .footer-heart-icon {
        height: 12px !important;
    }

    .footer-links a {
        font-size: 12px !important;
    }

    .footer-copyright {
        font-size: 11px !important;
    }

    .footer-credit {
        font-size: 11px !important;
        width: 100% !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 15px !important;
        transform: none !important;
    }

    .form-group {
        width: 100% !important;
        transform: none !important;
    }

    .form-group.full-width {
        width: 100% !important;
    }

    .signup-form .form-group label {
        display: block !important;
        width: 100% !important;
        margin-bottom: 6px !important;
        font-size: 14px !important;
        transform: none !important;
        text-align: left !important;
    }

    .signup-form .form-group input,
    .signup-form .form-group select,
    .signup-form .form-group textarea {
        width: 100% !important;
        padding: 14px 16px !important;
        font-size: 15px !important;
        transform: none !important;
        border-radius: 12px !important;
    }

    .signup-form .form-group select {
        padding-right: 40px !important;
    }

    /* Checkbox and GDPR styling */
    .signup-form .form-group p.list-info {
        font-size: 15px !important;
        text-align: center !important;
        margin: 15px 0 10px !important;
    }

    .signup-form .form-group .checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 10px 0 15px !important;
        transform: none !important;
        justify-content: flex-start !important;
    }

    .signup-form .form-group .checkbox-label input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

    .signup-form .form-group .checkbox-label .gdpr-text {
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: left !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* CTA Button */
    .signup-form .cta-button,
    #signup .cta-button {
        transform: none !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 10px auto 0 !important;
        display: block !important;
        font-size: 16px !important;
        padding: 14px 20px !important;
        border-radius: 10px !important;
    }

    .submit-group {
        width: 100% !important;
    }

    #participants {
        transform: none !important;
    }

    #gdpr-consent {
        transform: none !important;
    }

    #motivation {
        width: 100% !important;
        transform: none !important;
    }

    .section-from-teacher .text-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 2 !important;
        margin-top: 0 !important;
    }

    .section-from-teacher .text-content {
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 30px !important;
        margin-bottom: 0 !important;
    }

    /* What This Course Really Is Section - Responsive Overrides */
    .section-what-is {
        padding: 60px 20px;
        min-height: auto;
    }

    .section-what-is .irregular-background {
        display: none !important;
    }

    .section-what-is .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 40px !important;
        width: calc(100% - 40px) !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 40px 30px !important;
        transform: none !important;
        background-size: 100% 100% !important;
        background-position: center !important;
        min-height: fit-content !important;
        box-sizing: border-box !important;
    }

    #what-is-course h2 {
        transform: none !important;
    }

    #what-is-course .column {
        transform: none !important;
    }

    .section-what-is .two-column {
        position: relative !important;
    }

    .section-what-is .two-column::before {
        display: none !important;
    }

    .section-what-is .content-wrapper {
        width: calc(100% - 40px) !important;
        max-width: calc(100% - 40px) !important;
        padding: 30px 25px !important;
        background-size: cover !important;
        background-position: center !important;
        min-height: auto !important;
        padding-bottom: 50px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .section-what-is .section-title {
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #what-is-course h2 {
        transform: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
    }

    #what-is-course .column {
        transform: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-what-is .column p {
        text-align: left !important;
        margin-bottom: 8px !important;
    }

    .section-what-is .column p:last-child {
        margin-bottom: 0 !important;
    }

    .two-column {
        width: 100% !important;
        max-width: 100% !important;
        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .two-column .column p {
        font-size: 19px !important;
        line-height: 1.6 !important;
        text-align: left !important;
        margin-bottom: 8px !important;
    }

    .two-column .column p:last-child {
        margin-bottom: 0 !important;
    }

    .section-from-teacher .text-content {
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 0 !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .intro-text {
        font-size: 19px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px;
        width: 100%;
    }

    .bullet-list {
        margin-bottom: 25px;
        width: 100%;
    }

    .bullet-list p {
        font-size: 19px !important;
        line-height: 1.6 !important;
    }

    .closing-text {
        font-size: 16px !important;
        line-height: 1.5 !important;
        transform: none !important;
        width: 100%;
    }

    p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* Fix bullet items and checkboxes overlapping */
    .bullet-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin: 15px 0 !important;
        transform: none !important;
    }

    .bullet-list p {
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        transform: none !important;
    }

    .bullet-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
        transform: none !important;
    }

    .bullet-item img {
        flex-shrink: 0 !important;
        width: 20px !important;
        height: 20px !important;
        margin-top: 2px !important;
    }

    .bullet-item p {
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    /* Fix radio group */
    .radio-group {
        display: flex !important;
        gap: 20px !important;
        margin-top: 10px !important;
        transform: none !important;
    }

    .radio-group label {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        transform: none !important;
    }

    /* ========================================
       WHY TESORO SECTION - Mobile
       ======================================== */
    #why-andalusia-tesoro {
        height: auto !important;
        min-height: auto !important;
        padding: 30px 15px !important;
    }

    .section-why-both {
        padding: 30px 15px !important;
        min-height: auto !important;
    }

    /* Hide decorative tiles on mobile */
    .tiles-background-left,
    .tiles-background-right,
    #why-andalusia-tesoro .tiles-background-left,
    #why-andalusia-tesoro .tiles-background-right {
        display: none !important;
    }

    /* Make two columns into single column */
    .two-column-equal {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .why-tesoro-left,
    .why-tesoro-right {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .why-tesoro-left .section-title,
    #why-andalusia-tesoro .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .why-tesoro-left p,
    .why-tesoro-right p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
        text-align: left !important;
    }

    .why-tesoro-left p:last-child,
    .why-tesoro-right p:last-child {
        margin-bottom: 0 !important;
    }

    /* Method subtitle styling */
    .method-subtitle {
        font-size: 16px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    /* Features - horizontal row */
    .features {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
        margin: 15px auto 20px !important;
        max-width: 100% !important;
    }

    .feature {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
    }

    .feature-icon {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
    }

    .feature-icon img {
        width: 100% !important;
        height: 100% !important;
    }

    .feature span {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .two-column-uneven {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

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

    .accordion-header {
        font-size: 22px;
        padding: 20px;
        white-space: normal;
    }

    .info-item h3 {
        font-size: 24px;
    }

    /* Fix bullet lists and checklists on small mobile */
    .bullet-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin: 12px 0 !important;
        transform: none !important;
    }

    .bullet-list p {
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        transform: none !important;
    }

    .bullet-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin-bottom: 10px !important;
        transform: none !important;
    }

    .bullet-item img {
        flex-shrink: 0 !important;
        width: 16px !important;
        height: 16px !important;
        margin-top: 2px !important;
    }

    .bullet-item p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {

    /* ========================================
       GLOBAL SMALL MOBILE FIXES
       ======================================== */
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    section {
        padding: 30px 15px !important;
        overflow-x: hidden !important;
        max-width: 100% !important;
    }

    /* ========================================
       INTRO SECTION - Small Mobile
       ======================================== */
    .section-intro {
        padding: 25px 15px 30px !important;
        min-height: auto !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .background-illustration {
        opacity: 0.25 !important;
    }

    .logo-container {
        width: 80px !important;
        height: auto !important;
        margin: 0 auto 12px !important;
        position: relative !important;
        order: 0 !important;
    }

    .section-intro .content {
        position: relative !important;
        padding: 0 !important;
        width: 100% !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        z-index: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .subtitle {
        font-size: 10px !important;
        line-height: 1.4 !important;
        letter-spacing: 1px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 15px 0 !important;
        padding: 0 5px !important;
        text-align: center !important;
        color: rgba(68, 33, 20, 0.7) !important;
        opacity: 1 !important;
        white-space: normal !important;
        order: 1 !important;
        font-weight: 400 !important;
        position: relative !important;
        transform: none !important;
    }

    .headline-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        padding: 0 10px !important;
        order: 2 !important;
        position: relative !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .headline-bg {
        display: inline-block !important;
        background-color: transparent !important;
        padding: 0 !important;
    }

    .main-headline {
        font-size: 48px !important;
        line-height: 44px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center !important;
        margin: 0 0 4px 0 !important;
        font-weight: 700 !important;
        color: var(--tc-mint, #539f8c) !important;
        white-space: normal !important;
    }

    .description-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 0 10px !important;
        order: 3 !important;
        position: relative !important;
        transform: none !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
    }

    .description-bg {
        display: none !important;
    }

    .description {
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 0 !important;
        background-color: transparent !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .section-intro .cta-button {
        order: 4 !important;
    }

    .list-wrapper {
        order: 5 !important;
        margin-top: 10px !important;
        width: auto !important;
    }

    .cta-button {
        font-size: 15px !important;
        width: 100% !important;
        max-width: 220px !important;
        min-height: 50px !important;
        padding: 12px 18px !important;
    }

    .list-info {
        font-size: 13px !important;
        line-height: 18px !important;
        text-align: center !important;
    }

    .section-title {
        font-size: 42px !important;
        line-height: 40px !important;
        text-align: center !important;
    }

    /* ========================================
       FROM TEACHER TO TEACHER SECTION - Small Mobile
       ======================================== */
    section#from-teacher {
        min-height: auto !important;
        height: auto !important;
    }

    #from-teacher {
        height: auto !important;
        min-height: auto !important;
    }

    .section-from-teacher {
        padding: 30px 15px 40px !important;
        overflow: hidden !important;
        min-height: auto !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-bottom: 0 !important;
    }

    .tiles-background {
        display: none !important;
    }

    .section-from-teacher .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        transform: none !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 2 !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    .section-from-teacher .text-content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 2 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 0 !important;
    }

    .section-from-teacher .text-content {
        position: relative !important;
        z-index: 2 !important;
        overflow: visible !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .section-title.left-aligned {
        font-size: 42px !important;
        line-height: 40px !important;
        margin: 0 auto 20px !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    #from-teacher h2 {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #from-teacher .intro-text {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 15px 0 !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    #from-teacher .bullet-list {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 15px 0 !important;
        text-align: left !important;
    }

    #from-teacher .bullet-list p {
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 8px 0 !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    #from-teacher .closing-text {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 0 !important;
        transform: none !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    .section-from-teacher .text-content p,
    .section-from-teacher .text-content .intro-text,
    .section-from-teacher .text-content .bullet-list p,
    .section-from-teacher .text-content .closing-text {
        width: 100% !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
    }

    /* Global paragraph size for small mobile */
    p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .intro-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .bullet-list p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
        width: 100% !important;
    }

    .bullet-list {
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .closing-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
        transform: none !important;
        width: 100% !important;
    }

    /* ========================================
       WHAT YOU TAKE HOME SECTION - Small Mobile
       ======================================== */
    #take-home {
        padding: 25px 10px !important;
        min-height: auto !important;
    }

    .section-take-home {
        padding: 25px 10px !important;
        min-height: auto !important;
    }

    .what-you-take {
        padding: 0 !important;
    }

    #take-home .what-you-take .content-wrapper,
    .section-take-home .content-wrapper {
        padding: 20px 15px 25px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        border-radius: 15px !important;
    }

    .section-take-home .section-title,
    #take-home .section-title {
        font-size: 42px !important;
        line-height: 40px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .checklist {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .checklist-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    .checklist-item img {
        flex-shrink: 0 !important;
        width: 18px !important;
        height: 18px !important;
        margin-top: 1px !important;
    }

    .checklist-item p {
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: left !important;
    }

    /* ========================================
       WHY TESORO SECTION - Small Mobile
       ======================================== */
    #why-andalusia-tesoro {
        height: auto !important;
        min-height: auto !important;
        padding: 25px 10px !important;
    }

    .section-why-both {
        padding: 25px 10px !important;
        min-height: auto !important;
    }

    /* Hide decorative tiles on small mobile */
    .tiles-background-left,
    .tiles-background-right,
    #why-andalusia-tesoro .tiles-background-left,
    #why-andalusia-tesoro .tiles-background-right {
        display: none !important;
    }

    /* Single column layout */
    .two-column-equal {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .why-tesoro-left,
    .why-tesoro-right {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .why-tesoro-left .section-title,
    #why-andalusia-tesoro .section-title {
        font-size: 42px !important;
        line-height: 40px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .why-tesoro-left p,
    .why-tesoro-right p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        text-align: left !important;
    }

    .why-tesoro-left p:last-child,
    .why-tesoro-right p:last-child {
        margin-bottom: 0 !important;
    }

    /* Method subtitle */
    .method-subtitle {
        font-size: 14px !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    /* Features - horizontal row compact */
    .features {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        margin: 12px auto 15px !important;
        max-width: 100% !important;
    }

    .feature {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3px !important;
    }

    .feature-icon {
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0 !important;
    }

    .feature-icon img {
        width: 100% !important;
        height: 100% !important;
    }

    .feature span {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    .two-column-uneven {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* ========================================
       THE IMPACT SECTION - Small Mobile
       ======================================== */
    #why-matters {
        padding: 25px 10px !important;
        min-height: auto !important;
        background-size: auto 100% !important;
        background-position: center center !important;
    }

    .section-why-matters {
        padding: 25px 10px !important;
        min-height: auto !important;
    }

    #why-matters .content-wrapper {
        padding: 20px 15px 25px !important;
        max-width: 100% !important;
        border-radius: 15px !important;
    }

    #why-matters .section-title {
        font-size: 42px !important;
        line-height: 40px !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    .subtitle-text {
        color: #442114 !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        opacity: 1 !important;
        font-weight: 400 !important;
        text-align: center !important;
    }

    #why-matters .three-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    #why-matters .three-column .spacer {
        display: none !important;
    }

    #why-matters .column {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    #why-matters .bullet-item {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin-bottom: 10px !important;
        justify-content: flex-start !important;
        padding-left: 5px !important;
    }

    #why-matters .bullet-item img {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
        margin-top: 1px !important;
    }

    #why-matters .bullet-item p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    #why-matters .column .bullet-item:last-child {
        margin-bottom: 10px !important;
    }

    #why-matters .column:last-child .bullet-item:last-child {
        margin-bottom: 0 !important;
    }

    .three-column {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* ========================================
       PRACTICAL INFORMATION SECTION - Small Mobile
       ======================================== */
    #practical-info {
        padding: 25px 10px !important;
        min-height: auto !important;
    }

    .section-practical-info {
        padding: 25px 10px !important;
        min-height: auto !important;
    }

    /* Background image - hidden on small mobile */
    .irregular-background-bottom {
        display: none !important;
    }

    .section-practical-info .content-wrapper {
        padding: 20px 15px 25px !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }

    .section-practical-info .section-title {
        font-size: 42px !important;
        line-height: 40px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .info-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin: 15px 0 !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .info-item {
        width: 100% !important;
        text-align: center !important;
        position: relative !important;
    }

    .info-item:has(.dates-dropdown.show) {
        z-index: 10003 !important;
    }

    .info-icon {
        width: 40px !important;
        height: 38px !important;
        margin: 0 auto 10px !important;
    }

    .info-item h3 {
        font-size: 18px !important;
        line-height: 1.2 !important;
        margin: 0 0 8px !important;
        text-align: center !important;
    }

    .info-item p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
        text-align: center !important;
    }

    .info-item p:last-child {
        margin-bottom: 0 !important;
    }

    /* Dates dropdown styling */
    .dates-wrapper {
        text-align: center !important;
        position: relative !important;
        display: inline-block !important;
        overflow: visible !important;
        z-index: 10001 !important;
    }

    .check-dates-link {
        justify-content: center !important;
        font-size: 13px !important;
    }

    .dates-dropdown {
        text-align: center !important;
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 100% !important;
        margin-top: 10px !important;
        width: calc(100vw - 30px) !important;
        max-width: 280px !important;
        z-index: 10004 !important;
        box-sizing: border-box !important;
        background-color: #faf5f2 !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        padding: 15px 20px !important;
    }

    .dates-dropdown.show {
        display: block !important;
    }

    .dates-list {
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
    }

    .dates-list li {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .dates-group-title {
        font-size: 14px !important;
        margin: 8px 0 4px !important;
    }

    /* ========================================
       FIVE DAYS SECTION - Small Mobile
       ======================================== */
    .section-five-days {
        padding: 30px 0 50px !important;
        margin-top: 0 !important;
    }

    .section-five-days .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
    }

    .section-five-days .section-title {
        grid-column: auto !important;
        grid-row: auto !important;
        margin-bottom: 15px !important;
        transform: none !important;
        text-align: center !important;
        width: 100% !important;
        order: 1 !important;
        font-size: 42px !important;
        line-height: 40px !important;
    }

    /* Image - after title */
    .five-days-image-wrapper {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 2 !important;
        margin-bottom: 15px !important;
        padding: 0 5px !important;
    }

    .five-days-image {
        border-width: 3px !important;
        border-radius: 0 !important;
    }

    /* First subtitle - "How the experience... Places, people..." */
    .five-days-subtitle:first-of-type {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 1 !important;
        margin-bottom: 12px !important;
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 0 5px !important;
        text-align: left !important;
    }

    /* Second subtitle - "Set in Torre del Mar..." */
    .five-days-subtitle:last-of-type {
        grid-column: auto !important;
        grid-row: auto !important;
        order: 2 !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 0 5px !important;
        text-align: left !important;
    }

    .section-five-days .five-days-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        order: 3 !important;
    }

    .section-five-days .five-days-left {
        order: 1 !important;
    }

    .section-five-days .five-days-right {
        order: 2 !important;
    }

    #five-days h2 {
        font-size: 42px !important;
        transform: none !important;
        text-align: center !important;
    }

    .section-five-days .accordion-grid {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        grid-column: auto !important;
        grid-row: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 1 !important;
    }

    #five-days .accordion-grid {
        transform: none !important;
    }

    .section-five-days .accordion-item[data-day="1"],
    .section-five-days .accordion-item[data-day="2"],
    .section-five-days .accordion-item[data-day="3"],
    .section-five-days .accordion-item[data-day="4"],
    .section-five-days .accordion-item[data-day="5"] {
        grid-column: 1 !important;
        grid-row: auto !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    #five-days .accordion-header {
        font-size: 20px !important;
        line-height: 1.3 !important;
        padding: 12px !important;
        white-space: normal !important;
        align-items: center !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    #five-days .accordion-grid .accordion-item span {
        font-size: 14px !important;
    }

    #five-days .accordion-item {
        overflow: hidden !important;
        margin-bottom: 0 !important;
        position: relative !important;
        display: block !important;
    }

    #five-days .accordion-content {
        padding: 0 12px !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        visibility: hidden !important;
    }

    #five-days .accordion-item.active .accordion-content {
        max-height: 2400px !important;
        padding: 0 12px 15px !important;
        transition: max-height 0.3s ease, padding 0.3s ease !important;
        visibility: visible !important;
        overflow: visible !important;
    }

    #five-days .accordion-content p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #five-days .accordion-content .inline-check {
        width: 14px !important;
        height: 14px !important;
        vertical-align: middle !important;
        margin-right: 6px !important;
        display: inline-block !important;
        flex-shrink: 0 !important;
    }

    #five-days .accordion-content {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .accordion-header {
        font-size: 20px !important;
        padding: 12px !important;
        white-space: normal !important;
    }

    /* ========================================
       SIGNUP SECTION - Small Mobile
       ======================================== */
    #signup {
        margin-bottom: 0 !important;
        transform: none !important;
    }

    /* ========================================
       SIGN UP SECTION - Small Mobile
       ======================================== */
    #signup {
        padding: 25px 10px 35px !important;
        min-height: auto !important;
    }

    .section-signup {
        padding: 25px 10px 35px !important;
        min-height: auto !important;
    }

    .section-signup .content-wrapper {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .section-signup .section-title {
        font-size: 42px !important;
        line-height: 40px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }

    .beach-background {
        display: none !important;
    }

    .beach-section {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        padding-bottom: 80px !important;
        min-height: auto !important;
        background-size: 100% auto !important;
        background-position: center bottom !important;
        background-attachment: local !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .signup-form {
        margin-top: 10px !important;
        width: 100% !important;
    }

    /* ========================================
       LEGAL SECTION - Small Mobile
       ======================================== */
    .section-legal {
        padding: 30px 10px !important;
    }

    .legal-content {
        max-width: 100% !important;
    }

    .legal-section {
        margin-bottom: 30px !important;
    }

    .legal-subtitle {
        font-size: 34px !important;
        line-height: 32px !important;
        margin-bottom: 15px !important;
    }

    .legal-section p {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 10px !important;
    }

    .legal-list li {
        font-size: 14px !important;
        line-height: 20px !important;
        margin-bottom: 6px !important;
    }

    .beach-section-footer {
        padding-top: 60px !important;
        padding-bottom: 160px !important;
        margin: 0 !important;
        width: 100% !important;
        min-height: auto !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        background-attachment: local !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Footer - Small Mobile */
    .footer {
        padding: 12px 10px 18px !important;
        margin-top: 0 !important;
        background-color: transparent !important;
    }

    .footer-content {
        max-width: 100% !important;
    }

    .footer p {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-bottom: 3px !important;
    }

    .footer-made-with {
        font-size: 12px !important;
    }

    .footer-heart-icon {
        height: 11px !important;
    }

    .footer-links a {
        font-size: 11px !important;
    }

    .footer-copyright {
        font-size: 10px !important;
    }

    .footer-credit {
        font-size: 10px !important;
        width: 100% !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
        transform: none !important;
    }

    .form-group {
        width: 100% !important;
        transform: none !important;
    }

    .signup-form .form-group label {
        display: block !important;
        width: 100% !important;
        margin-bottom: 5px !important;
        font-size: 13px !important;
        transform: none !important;
        text-align: left !important;
    }

    .signup-form .form-group input,
    .signup-form .form-group select,
    .signup-form .form-group textarea {
        width: 100% !important;
        padding: 12px 14px !important;
        font-size: 14px !important;
        transform: none !important;
        border-radius: 10px !important;
    }

    .signup-form .form-group select {
        padding-right: 35px !important;
    }

    /* Checkbox and GDPR styling */
    .signup-form .form-group p.list-info {
        font-size: 14px !important;
        text-align: center !important;
        margin: 12px 0 8px !important;
    }

    .signup-form .form-group .checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 8px 0 12px !important;
        transform: none !important;
        justify-content: flex-start !important;
    }

    .signup-form .form-group .checkbox-label input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

    .signup-form .form-group .checkbox-label .gdpr-text {
        font-size: 12px !important;
        line-height: 1.4 !important;
        text-align: left !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* CTA Button */
    .signup-form .cta-button,
    #signup .cta-button {
        transform: none !important;
        width: 100% !important;
        max-width: 240px !important;
        margin: 8px auto 0 !important;
        display: block !important;
        font-size: 15px !important;
        padding: 12px 18px !important;
        border-radius: 10px !important;
    }

    #participants {
        transform: none !important;
    }

    #gdpr-consent {
        transform: none !important;
    }

    #motivation {
        width: 100% !important;
        transform: none !important;
    }

    .form-group input,
    .form-group select {
        font-size: 14px !important;
        padding: 12px 14px !important;
    }

    /* ========================================
       WHAT IS COURSE SECTION - Small Mobile
       ======================================== */
    .section-what-is {
        padding: 30px 10px !important;
        overflow: visible !important;
        min-height: auto !important;
    }

    .section-what-is .irregular-background {
        display: none !important;
    }

    .section-what-is .content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
        padding: 20px 15px !important;
        width: calc(100% - 10px) !important;
        max-width: calc(100% - 10px) !important;
        margin: 0 auto !important;
        transform: none !important;
        background-size: cover !important;
        background-position: center !important;
        min-height: fit-content !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    #what-is-course h2 {
        transform: none !important;
    }

    #what-is-course .column {
        transform: none !important;
    }

    .section-what-is .two-column {
        position: relative !important;
        min-height: auto !important;
    }

    .section-what-is .two-column::before {
        display: none !important;
    }

    .section-what-is .section-title {
        font-size: 46px !important;
        line-height: 44px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        transform: none !important;
    }

    #what-is-course h2 {
        transform: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #what-is-course .column {
        transform: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }

    .section-what-is .column p {
        text-align: left !important;
        margin-bottom: 8px !important;
    }

    .section-what-is .column p:last-child {
        margin-bottom: 0 !important;
    }

    .two-column {
        width: 100% !important;
        max-width: 100% !important;
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        transform: none !important;
        position: relative !important;
    }

    .two-column .column {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
    }

    .two-column .column p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin-bottom: 8px !important;
    }

    .two-column .column p:last-child {
        margin-bottom: 0 !important;
    }

    .section-from-teacher .text-content {
        max-width: 100% !important;
        width: 100% !important;
        transform: none !important;
    }
}
