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

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

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

a {
    color: #2d5a3d;
    text-decoration: none;
}

a:hover {
    color: #1a3a25;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 28px;
    font-weight: 400;
    color: #2d5a3d;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}

.ad-disclosure {
    background-color: #f4f1ed;
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: 20px;
}

.ad-disclosure span {
    font-size: 12px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #666;
}

.hero-magazine {
    margin-top: 30px;
    margin-bottom: 60px;
}

.hero-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-main {
    flex: 2 1 600px;
    position: relative;
    background-color: #e8e5e0;
}

.hero-main img {
    width: 100%;
    height: 500px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
    padding: 40px 30px;
}

.hero-overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 18px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.hero-sidebar {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background-color: #2d5a3d;
    color: #fff;
    padding: 30px;
    flex: 1;
}

.highlight-card:first-child {
    background-color: #f4f1ed;
    color: #2c3e50;
}

.highlight-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.highlight-card img {
    width: 100%;
    height: 100%;
}

.intro-section {
    padding: 60px 0;
    background-color: #fff;
}

.magazine-columns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.column-left {
    flex: 1 1 400px;
}

.column-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.column-left p {
    font-size: 18px;
    margin-bottom: 20px;
}

.column-right {
    flex: 1 1 400px;
    background-color: #f9f8f6;
    padding: 30px;
}

.column-right img {
    width: 100%;
    margin-bottom: 15px;
}

.caption {
    font-size: 14px;
    font-style: italic;
    color: #666;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.services-preview {
    padding: 80px 0;
    background-color: #f9f8f6;
}

.section-title {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.section-title-center {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-card.large {
    flex: 1 1 calc(66.666% - 20px);
}

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: #e8e5e0;
}

.service-card.large img {
    height: 350px;
}

.service-card.featured img {
    width: 50%;
    height: 400px;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-content-full {
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #1a3a25;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #fff;
}

.split-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.content-block {
    flex: 1 1 400px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
}

.content-block img {
    width: 100%;
    background-color: #e8e5e0;
}

.form-section {
    padding: 80px 0;
    background-color: #f4f1ed;
}

.form-wrapper-magazine {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    border: 1px solid #d0d0d0;
    background-color: #fdfcfb;
}

.btn-submit {
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #e8e5e0;
}

.disclaimer-text {
    font-size: 14px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

.footer-column a {
    color: #bbb;
    font-size: 15px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column p {
    color: #bbb;
    font-size: 15px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #999;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 25px;
    z-index: 1000;
}

.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: 20px;
}

.cookie-content p {
    flex: 1 1 500px;
    font-size: 15px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.cookie-content a {
    color: #a8d5ba;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 15px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #fff;
}

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

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

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

.page-hero {
    background-color: #f4f1ed;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 20px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
    background-color: #fff;
}

.story-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.story-text-wide {
    flex: 2 1 500px;
}

.story-text-wide h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.story-text-wide p {
    font-size: 18px;
    margin-bottom: 20px;
}

.story-image {
    flex: 1 1 400px;
    background-color: #e8e5e0;
}

.story-image img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 80px 0;
    background-color: #f9f8f6;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 40px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.value-card p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.team-magazine-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.team-intro {
    flex: 1 1 400px;
}

.team-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.team-image-feature {
    flex: 1 1 500px;
    background-color: #e8e5e0;
}

.team-image-feature img {
    width: 100%;
}

.approach-section {
    padding: 80px 0;
    background-color: #f4f1ed;
}

.approach-columns {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.approach-column {
    flex: 1 1 400px;
}

.approach-column h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.approach-column p {
    font-size: 17px;
    margin-bottom: 20px;
}

.mission-section {
    padding: 80px 0;
    background-color: #2d5a3d;
}

.mission-banner {
    text-align: center;
    color: #fff;
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 20px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.service-detail.reverse .service-detail-layout {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 10px;
}

.price-display {
    font-size: 32px;
    font-weight: bold;
    color: #2d5a3d;
    margin-bottom: 20px;
}

.btn-service-detail {
    background-color: #2d5a3d;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service-detail:hover {
    background-color: #1a3a25;
}

.service-detail-image {
    flex: 1 1 400px;
    background-color: #e8e5e0;
}

.service-detail-image img {
    width: 100%;
}

.service-cta-section {
    padding: 60px 0;
    background-color: #f9f8f6;
}

.cta-box {
    background-color: #fff;
    padding: 50px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 30px;
}

.btn-cta-secondary {
    display: inline-block;
    background-color: #666;
    color: #fff;
    padding: 15px 35px;
    font-size: 17px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    transition: background-color 0.3s;
}

.btn-cta-secondary:hover {
    background-color: #444;
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 400px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.contact-item p {
    font-size: 17px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1 1 400px;
}

.contact-image-block img {
    width: 100%;
    margin-bottom: 20px;
    background-color: #e8e5e0;
}

.contact-note {
    background-color: #f4f1ed;
    padding: 25px;
}

.contact-note p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.location-section {
    padding: 60px 0;
    background-color: #f9f8f6;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.location-info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.transport-info,
.parking-info {
    flex: 1 1 400px;
}

.transport-info h3,
.parking-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.transport-info p,
.parking-info p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 12px;
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f4f1ed;
    padding: 30px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

.faq-item p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-section .container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.thanks-content {
    flex: 1 1 500px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 20px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f4f1ed;
    padding: 25px;
    margin-bottom: 30px;
}

.service-selected {
    text-align: left;
}

.service-selected p {
    font-size: 17px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 8px;
}

.service-name {
    font-size: 22px !important;
    font-weight: bold;
    color: #2d5a3d;
}

.thanks-info,
.thanks-contact {
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h3,
.thanks-contact h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.thanks-info p,
.thanks-contact p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    font-size: 17px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1a3a25;
}

.btn-secondary {
    background-color: #666;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #444;
}

.thanks-image {
    flex: 1 1 400px;
    background-color: #e8e5e0;
}

.thanks-image img {
    width: 100%;
}

.next-steps-section {
    padding: 60px 0;
    background-color: #f9f8f6;
}

.next-steps-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.suggestions-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.suggestion-card {
    background-color: #fff;
    padding: 35px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.suggestion-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.suggestion-card p {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 20px;
}

.suggestion-card a {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #2d5a3d;
    font-weight: 500;
}

.suggestion-card a:hover {
    color: #1a3a25;
}

.legal-page {
    padding: 60px 0;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 17px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.legal-page ul li {
    font-size: 17px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin-bottom: 12px;
}

.legal-page a {
    color: #2d5a3d;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #d0d0d0;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: #f4f1ed;
    font-weight: 600;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.cookies-table td {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav ul {
        gap: 15px;
        flex-wrap: wrap;
    }

    .ad-disclosure {
        margin-left: 0;
    }

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

    .hero-overlay h2 {
        font-size: 32px;
    }

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

    .service-card.featured img {
        width: 100%;
        height: 250px;
    }

    .service-content-full {
        width: 100%;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookies-table {
        font-size: 14px;
    }
}