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

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

a {
    color: #3d5a29;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a7d3e;
}

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

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.brand-zone {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    background-color: #f5f5f3;
    border-radius: 3px;
}

.nav-primary {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-primary a {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    transition: color 0.3s ease;
}

.nav-primary a:hover {
    color: #2d5016;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrap {
    position: relative;
    height: 560px;
    background-color: #d4d4d0;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    padding: 60px 0;
}

.hero-overlay h1 {
    font-size: 46px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    color: #f0f0f0;
    line-height: 1.5;
}

.content-magazine {
    padding: 80px 0;
}

.magazine-grid {
    display: flex;
    gap: 60px;
}

.column-main {
    flex: 2;
}

.column-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.column-main h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.column-main h3 {
    font-size: 26px;
    margin: 40px 0 16px;
    color: #2a2a2a;
}

.column-main p {
    margin-bottom: 20px;
}

.inline-visual {
    margin: 40px 0;
    background-color: #e8e8e6;
}

.inline-visual img {
    width: 100%;
}

.cta-inline {
    margin: 48px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #2d5016;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6620;
    color: #fff;
}

.info-card {
    background-color: #fff;
    padding: 28px;
    border: 1px solid #e0e0dc;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d5016;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
}

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

.visual-card {
    background-color: #e8e8e6;
}

.visual-card img {
    width: 100%;
    margin-bottom: 12px;
}

.caption {
    padding: 0 16px 16px;
    font-size: 14px;
    font-style: italic;
    color: #666;
}

.quote-card {
    background-color: #f9f9f7;
    padding: 28px;
    border-left: 4px solid #2d5016;
}

.quote-card blockquote {
    font-size: 17px;
    font-style: italic;
    color: #3a3a3a;
    line-height: 1.6;
}

.services-overview {
    padding: 80px 0;
    background-color: #fff;
}

.section-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-feature {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.service-feature.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #e8e8e6;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d5016;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    margin-top: 12px;
}

.trust-section {
    padding: 80px 0;
    background-color: #f5f5f3;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content p {
    margin-bottom: 20px;
}

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

.form-layout-magazine {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d5016;
}

.contact-form {
    max-width: 640px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2a2a2a;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0ce;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 14px 40px;
    background-color: #2d5016;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.footer-main {
    background-color: #2a2a2a;
    color: #c0c0c0;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #c0c0c0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #444;
    padding: 28px 0;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2d5016;
    padding: 24px;
    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;
    gap: 24px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept {
    padding: 10px 24px;
    background-color: #2d5016;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-reject {
    padding: 10px 24px;
    background-color: #e0e0dc;
    color: #2a2a2a;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-header-editorial {
    padding: 80px 0 60px;
    background-color: #f5f5f3;
    text-align: center;
}

.page-header-editorial h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.about-content-magazine {
    padding: 80px 0;
}

.column-wide {
    flex: 2;
}

.column-narrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.column-wide h2 {
    font-size: 36px;
    margin: 32px 0 20px;
    color: #1a1a1a;
}

.column-wide h3 {
    font-size: 26px;
    margin: 36px 0 16px;
    color: #2a2a2a;
}

.column-wide p {
    margin-bottom: 20px;
}

.column-wide img {
    margin-bottom: 32px;
    width: 100%;
    background-color: #e8e8e6;
}

.info-box {
    background-color: #fff;
    padding: 28px;
    border: 1px solid #e0e0dc;
}

.info-box h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d5016;
}

.method-list {
    list-style: none;
}

.method-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
}

.method-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
    font-size: 20px;
}

.visual-element {
    background-color: #e8e8e6;
}

.visual-element img {
    width: 100%;
    margin-bottom: 12px;
}

.caption-small {
    padding: 0 16px 16px;
    font-size: 13px;
    font-style: italic;
    color: #666;
}

.highlight-box {
    background-color: #f9f9f7;
    padding: 24px;
    border-left: 4px solid #2d5016;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.6;
}

.expertise-areas {
    padding: 80px 0;
    background-color: #fff;
}

.expertise-areas h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.expertise-card {
    flex: 1 1 calc(50% - 16px);
    background-color: #f9f9f7;
    padding: 32px;
    border-left: 3px solid #2d5016;
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5016;
}

.expertise-card p {
    font-size: 15px;
    line-height: 1.6;
}

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

.large-quote {
    font-size: 28px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.quote-attribution {
    text-align: center;
    font-size: 16px;
    color: #d0d0d0;
}

.services-detail-section {
    padding: 80px 0;
}

.service-layout-full {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-text-zone {
    flex: 1;
}

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

.service-text-zone h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d5016;
}

.service-text-zone p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.price-display {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #e0e0dc;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 6px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: #666;
}

.cta-section-centered {
    padding: 80px 0;
    background-color: #f5f5f3;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.btn-large {
    display: inline-block;
    padding: 16px 48px;
    background-color: #2d5016;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #3d6620;
    color: #fff;
}

.contact-content-section {
    padding: 80px 0;
}

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

.contact-info-zone {
    flex: 1;
}

.contact-visual-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-zone h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5016;
}

.contact-block p {
    line-height: 1.6;
}

.note-text {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.contact-visual-zone img {
    width: 100%;
    background-color: #e8e8e6;
}

.info-card-contact {
    background-color: #f9f9f7;
    padding: 24px;
    border-left: 3px solid #2d5016;
}

.info-card-contact h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d5016;
}

.info-card-contact p {
    font-size: 15px;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #2d5016;
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: #2a2a2a;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 20px 24px;
    line-height: 1.7;
}

.legal-page li {
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: #f5f5f3;
    font-weight: 600;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fff;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    margin: 0 auto 32px;
    width: 80px;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.service-confirmation {
    margin: 32px 0;
    padding: 20px;
    background-color: #f5f5f3;
    border-radius: 4px;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.steps-list {
    margin-left: 24px;
    line-height: 1.8;
}

.steps-list li {
    margin-bottom: 16px;
    font-size: 17px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #e0e0dc;
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d0d0ce;
    color: #2a2a2a;
}

.additional-info {
    margin-top: 48px;
    padding: 24px;
    background-color: #f9f9f7;
    border-left: 4px solid #2d5016;
    text-align: left;
}

.additional-info p {
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .magazine-grid,
    .service-feature,
    .service-feature.reverse,
    .service-block,
    .service-block.reverse,
    .contact-magazine-layout {
        flex-direction: column;
    }

    .footer-magazine-grid {
        flex-direction: column;
        gap: 32px;
    }

    .expertise-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 640px) {
    .header-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-primary {
        gap: 20px;
    }

    .hero-image-wrap {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .section-heading {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}