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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb5;
    --accent-color: #d4845c;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: #c27550;
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background: var(--bg-light);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #c27550;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-inline {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s;
    display: inline-block;
}

.cta-inline:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: var(--accent-color);
}

.container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.split-left, .split-right {
    flex: 1;
    padding: 4rem;
}

.intro-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.problem-section {
    padding: 5rem 0;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.approach-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 0;
}

.container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.testimonial-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

blockquote {
    background: var(--bg-white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

blockquote p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.95rem;
}

.programmes-preview {
    padding: 5rem 0;
}

.programmes-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.programmes-split {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.programme-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.programme-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.programme-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.programmes-preview .cta-primary {
    display: block;
    text-align: center;
    max-width: 300px;
    margin: 3rem auto 0;
}

.booking-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.booking-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.booking-section p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.booking-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form .cta-primary {
    width: 100%;
    text-align: center;
}

.final-cta {
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 5rem 2rem;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #c27550;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-box {
    max-width: 600px;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-right {
        height: 400px;
    }

    .container-split {
        flex-direction: column;
    }

    .split-left, .split-right {
        padding: 2rem;
    }

    .approach-grid {
        flex-direction: column;
    }

    .programmes-split {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
