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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #3182ce;
    --text-color: #2d3748;
    --text-light: #4a5568;
    --background-light: #f7fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #38a169;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

ul {
    list-style: none;
}

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

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

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

.logo:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--background-light);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    order: 3;
    width: 100%;
    text-align: center;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.hero {
    position: relative;
}

.editorial-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.editorial-content {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section {
    padding: 4rem 2rem;
}

.narrow-container {
    max-width: 700px;
    margin: 0 auto;
}

.opening-paragraph {
    font-size: 1.25rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.story-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.insight-block {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.insight-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.left-aligned .insight-container {
    flex-direction: row;
}

.right-aligned .insight-container {
    flex-direction: row-reverse;
}

.insight-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.insight-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.pull-quote {
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background-color: var(--background-light);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-color);
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
}

.visual-break {
    padding: 0;
    margin: 2rem 0;
}

.visual-container {
    max-width: 100%;
    overflow: hidden;
}

.visual-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.testimonial-band {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    color: #ffffff;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-section {
    background-color: var(--secondary-color);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: var(--secondary-color);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.form-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.main-footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: var(--success-color);
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2f855a;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.cookie-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.cookie-link:hover {
    color: #ffffff;
}

.page-header {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 2rem;
}

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

.header-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.centered-header {
    background-color: var(--background-light);
    min-height: 200px;
}

.values-section {
    padding: 4rem 2rem;
    background-color: var(--background-white);
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
}

.values-container h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-intro {
    margin-bottom: 2rem;
}

.team-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-image {
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.programmes-intro {
    padding: 3rem 2rem;
    text-align: center;
}

.programme-detail {
    padding: 4rem 2rem;
}

.programme-detail.alt-layout {
    background-color: var(--background-light);
}

.programme-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.programme-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 280px;
}

.programme-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.programme-info {
    flex: 1.2;
}

.programme-info h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.programme-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.programme-features {
    margin-bottom: 1.5rem;
}

.programme-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.programme-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.programme-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.programme-cta:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.programme-detail.standalone {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.programme-container.centered {
    justify-content: center;
    text-align: center;
}

.programme-info.full-width {
    max-width: 700px;
}

.standalone .programme-info h2 {
    color: #ffffff;
}

.standalone .programme-price {
    color: rgba(255, 255, 255, 0.9);
}

.standalone .programme-info > p {
    color: rgba(255, 255, 255, 0.85);
}

.standalone .programme-features li {
    color: rgba(255, 255, 255, 0.85);
}

.standalone .programme-features li::before {
    background-color: #ffffff;
}

.programme-features.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
}

.programme-features.horizontal li {
    flex: none;
}

.standalone .programme-cta {
    background-color: #ffffff;
    color: var(--secondary-color);
}

.standalone .programme-cta:hover {
    background-color: var(--background-light);
}

.comparison-note {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--background-light);
}

.comparison-note h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-note p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.inline-cta {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

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

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-details,
.contact-additional {
    flex: 1;
    min-width: 300px;
}

.contact-details h2,
.contact-additional h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-additional p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-additional ul {
    margin-bottom: 1.5rem;
}

.contact-additional li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-additional li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.contact-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.contact-cta:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.location-section {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

.location-container {
    max-width: 900px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-image {
    border-radius: 8px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.thanks-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.thanks-section {
    width: 100%;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

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

.service-confirmation {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.thanks-container > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.next-steps {
    text-align: left;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.next-steps li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.thanks-button:not(.secondary) {
    background-color: var(--accent-color);
    color: #ffffff;
}

.thanks-button:not(.secondary):hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.thanks-button.secondary {
    background-color: var(--background-light);
    color: var(--text-color);
}

.thanks-button.secondary:hover {
    background-color: var(--border-color);
}

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

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

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

.legal-section h3 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin-bottom: 1rem;
}

.legal-section li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--text-color);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 4;
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .ad-disclosure {
        order: 2;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

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

    .right-aligned .insight-container {
        flex-direction: column;
    }

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

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

    .alt-layout .programme-container {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .story-section h2,
    .legal-container h1 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-button {
        width: 100%;
    }
}
