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

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links a:hover {
    color: #1a472a;
}

.main-content {
    background-color: #ffffff;
}

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

.hero-editorial {
    padding: 4rem 0 2.5rem 0;
    background-color: #f9f9f9;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.story-section {
    padding: 3rem 0;
    border-bottom: 1px solid #ebebeb;
}

.story-section:last-of-type {
    border-bottom: none;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.story-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
    font-weight: 600;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.story-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.story-section li {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
    display: block;
}

.insight-block {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.insight-block blockquote {
    border-left: 4px solid #1a472a;
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.insight-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

.cta-inline {
    padding: 3rem 0;
    background-color: #fafafa;
}

.cta-box {
    background-color: #1a472a;
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 6px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a472a;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-secondary:hover {
    background-color: #1a472a;
    transform: translateY(-2px);
}

.programmes-section {
    padding: 3rem 0;
}

.programme-item {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.programme-item:last-child {
    border-bottom: none;
}

.programme-item h2,
.programme-item h3 {
    color: #1a472a;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.programme-item h2 {
    font-size: 1.8rem;
}

.programme-item h3 {
    font-size: 1.3rem;
}

.programme-item p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.programme-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn:hover {
    background-color: #1a472a;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.testimonial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #1a472a;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-size: 1rem;
    color: #666;
}

.form-section {
    padding: 3rem 0;
    background-color: #f5f5f5;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2a2a2a;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a472a;
}

.final-cta {
    padding: 4rem 0;
    background-color: #2d5f3f;
    color: #ffffff;
    text-align: center;
}

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

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

.contact-info-section {
    padding: 3rem 0;
}

.contact-details h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.contact-details a {
    color: #1a472a;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.address {
    line-height: 1.8;
}

.contact-note {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

.legal-content {
    padding: 3rem 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #3a3a3a;
}

.legal-content a {
    color: #1a472a;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-note {
    margin-top: 3rem;
    font-style: italic;
    color: #666;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.thanks-message {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-message h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.thanks-message ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.highlight-text {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #1a472a;
    margin: 1.5rem 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cookie-banner.active {
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-accept {
    background-color: #1a472a;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2d5f3f;
}

.btn-reject {
    background-color: #666;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-text {
    font-size: 0.9rem;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .editorial-container {
        padding: 0 1.5rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

    .story-section p {
        font-size: 1rem;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}