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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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 {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background-color: #2d7a4f;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d7a4f;
}

.ad-notice {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666666;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.hero-right {
    flex: 1;
    background-color: #e8f3ed;
    position: relative;
    overflow: hidden;
}

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

.split-reversed {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.split-image {
    flex: 1;
    background-color: #e0e7e3;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.approach-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.approach-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d7a4f;
}

.approach-card p {
    font-size: 1rem;
    color: #4a4a4a;
}

.programmes-split {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.programmes-intro {
    margin-bottom: 3rem;
}

.programmes-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.programmes-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 800px;
}

.programmes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.programme-item {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.programme-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.programme-details {
    flex: 2;
    padding: 2rem;
}

.programme-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.programme-details p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.programme-details ul {
    list-style: none;
    padding-left: 0;
}

.programme-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.programme-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: bold;
}

.programme-pricing {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a4f;
    display: block;
    margin-bottom: 0.5rem;
}

.per-person {
    font-size: 0.9rem;
    color: #666666;
    display: block;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonials-section {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 5rem 2rem;
}

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

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #3a3a3a;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: block;
    font-size: 0.95rem;
    color: #b0b0b0;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #e8f3ed;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #666666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.selected-programme-display {
    background-color: #e8f3ed;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    color: #2d7a4f;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d7a4f;
}

.btn-submit {
    width: 100%;
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #246940;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2c2c2c;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d7a4f;
}

.info-block p {
    color: #4a4a4a;
    line-height: 1.7;
}

.about-hero {
    background-color: #e8f3ed;
    padding: 5rem 2rem;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 1.3rem;
    color: #4a4a4a;
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.services-grid {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-large {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    flex: 1;
    background-color: #e0e7e3;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666666;
}

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

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d7a4f;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #2d7a4f;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.selected-service-info {
    background-color: #e8f3ed;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service-info strong {
    color: #2d7a4f;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reversed,
    .contact-split,
    .service-card-large,
    .programme-item {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-image,
    .split-content {
        min-height: 400px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    .about-hero h1 {
        font-size: 2.3rem;
    }
}