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

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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a4d2e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.hero-magazine {
    background-color: #fff;
    padding: 80px 30px;
}

.hero-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a4d2e;
    font-weight: normal;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    background-color: #1a4d2e;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #145028;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.intro-columns {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.col-left {
    flex: 2;
}

.col-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a4d2e;
    font-weight: normal;
}

.col-left p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.col-right {
    flex: 1;
}

.quote-block {
    background-color: #1a4d2e;
    color: #fff;
    padding: 40px 30px;
    margin-top: 40px;
}

.quote-block blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-block cite {
    font-size: 14px;
    font-style: normal;
    opacity: 0.9;
}

.visual-break {
    background-color: #e8e8e8;
}

.visual-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.services-magazine {
    padding: 100px 30px;
    background-color: #fff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #1a4d2e;
    margin-bottom: 20px;
    font-weight: normal;
}

.section-header-center p {
    font-size: 19px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid-magazine {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-large {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 50px;
}

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a4d2e;
    font-weight: normal;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a4d2e;
    font-weight: bold;
}

.service-price {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #1a4d2e;
}

.btn-select {
    background-color: #1a4d2e;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #145028;
}

.testimonials-inline {
    padding: 80px 30px;
    background-color: #f4f4f4;
}

.testimonial-item {
    margin-bottom: 40px;
}

.testimonial-item p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-item cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.booking-form-section {
    padding: 80px 30px;
    background-color: #fff;
}

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

.container-narrow h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a4d2e;
    text-align: center;
    font-weight: normal;
}

.container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: 'Georgia', serif;
}

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

.btn-submit {
    background-color: #1a4d2e;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-choose {
    padding: 80px 30px;
    background-color: #f9f9f9;
}

.why-choose h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a4d2e;
    font-weight: normal;
}

.reasons-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    flex: 1;
}

.reason-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a4d2e;
    font-weight: normal;
}

.reason-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a4d2e;
    color: #fff;
    padding: 25px 30px;
    display: none;
    z-index: 2000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s;
}

.btn-cookie-accept {
    background-color: #fff;
    color: #1a4d2e;
}

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.9;
}

.thanks-page {
    padding: 100px 30px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-page h1 {
    font-size: 48px;
    color: #1a4d2e;
    margin-bottom: 30px;
    font-weight: normal;
}

.thanks-page p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
    max-width: 700px;
}

.thanks-page .cta-primary {
    margin-top: 30px;
}

.legal-page {
    padding: 80px 30px;
    background-color: #fff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a4d2e;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a4d2e;
    font-weight: normal;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 30px;
}

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

.contact-container h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a4d2e;
    text-align: center;
    font-weight: normal;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 50px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a4d2e;
    font-weight: normal;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #1a4d2e;
    font-weight: 600;
}

.about-page {
    padding: 80px 30px;
    background-color: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-header h1 {
    font-size: 48px;
    color: #1a4d2e;
    margin-bottom: 25px;
    font-weight: normal;
}

.about-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a4d2e;
    font-weight: normal;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.team-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a4d2e;
    font-weight: normal;
}

.team-member .role {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 30px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

    .hero-content-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .service-card-large {
        flex-direction: column;
    }

    .service-card-large:nth-child(even) {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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