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

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

.ad-disclosure {
    background-color: #f4f4f2;
    border-bottom: 1px solid #d4d4d0;
    padding: 8px 0;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #666;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #2a7c3f;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-area {
    flex: 0 0 auto;
}

.site-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
}

.site-tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.nav-horizontal {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-horizontal a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-horizontal a:hover {
    color: #2a7c3f;
}

.nav-horizontal a.active {
    color: #2a7c3f;
    font-weight: 700;
}

.main-magazine {
    background-color: #fafaf8;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #c4b5a0;
}

.hero-image-wrapper 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.8), transparent);
    padding: 60px 40px;
    color: #ffffff;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 700px;
}

.hero-subtext {
    font-size: 20px;
    font-style: italic;
    max-width: 600px;
}

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

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

.container-fluid {
    width: 100%;
    padding: 0 30px;
}

.intro-columns {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #e4e4e0;
}

.two-col-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.col-narrow {
    flex: 0 0 280px;
}

.col-wide {
    flex: 1;
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2a7c3f;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
}

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

.col-wide p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #444;
}

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

.section-heading-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card-mag {
    background-color: #ffffff;
    width: calc(33.333% - 20px);
    min-width: 320px;
    border: 1px solid #e0e0dc;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card-mag:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-image-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d4cfc0;
}

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

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e4e4e0;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2a7c3f;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    background-color: #2a7c3f;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.form-heading {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #d4d4d0;
    background-color: #fafaf8;
    color: #333;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e8e8e4;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: #2a7c3f;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.trust-section {
    padding: 60px 0;
    background-color: #f9f9f7;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.disclaimer-box {
    padding: 40px 0;
    background-color: #fff9e6;
    border-top: 2px solid #f4d03f;
    border-bottom: 2px solid #f4d03f;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.footer-magazine {
    background-color: #2c2c2c;
    color: #d4d4d0;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    border-top: 3px solid #2a7c3f;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.page-hero-simple {
    padding: 60px 0 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e4e4e0;
}

.page-title {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 20px;
    color: #555;
    font-style: italic;
}

.content-editorial {
    padding: 60px 0;
    background-color: #fafaf8;
}

.editorial-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.editorial-sidebar {
    flex: 0 0 400px;
}

.editorial-sidebar img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.editorial-main {
    flex: 1;
}

.editorial-main h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.editorial-main p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

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

.values-columns {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.value-block {
    flex: 1;
    padding: 30px;
    background-color: #f9f9f7;
    border-left: 4px solid #2a7c3f;
}

.value-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.team-approach {
    padding: 60px 0;
    background-color: #f4f4f2;
}

.two-col-reverse {
    display: flex;
    gap: 50px;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.col-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.col-visual {
    flex: 0 0 350px;
}

.visual-box {
    background-color: #2a7c3f;
    padding: 40px;
    color: #ffffff;
}

.quote-text {
    font-size: 22px;
    line-height: 1.5;
    font-style: italic;
}

.cta-inline {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-box-centered {
    text-align: center;
    padding: 60px 40px;
    background-color: #f9f9f7;
    border: 2px solid #e4e4e0;
}

.cta-box-centered h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.btn-primary-large {
    display: inline-block;
    background-color: #2a7c3f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.service-detail-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e4e4e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

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

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

.service-detail-content h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2a7c3f;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2a7c3f;
    font-weight: 700;
}

.btn-select-service {
    background-color: #2a7c3f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.service-detail-image {
    flex: 0 0 450px;
}

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

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

.contact-grid-asymmetric {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-block h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2a7c3f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.email-display {
    color: #555;
    font-style: italic;
}

.contact-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    line-height: 1.6;
}

.contact-visual-block {
    flex: 0 0 500px;
}

.contact-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #d4cfc0;
}

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

.contact-info-extra h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-info-extra p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.map-placeholder {
    padding: 0;
    margin: 40px 0;
}

.map-area {
    width: 100%;
    height: 400px;
    background-color: #e8e8e4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #d4d4d0;
    border-bottom: 1px solid #d4d4d0;
}

.map-text {
    font-size: 18px;
    color: #888;
    font-style: italic;
}

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

.faq-contact h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background-color: #f9f9f7;
    border-left: 3px solid #2a7c3f;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.thanks-content {
    text-align: center;
    padding: 60px 40px;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #f0f8f4;
    border: 2px solid #2a7c3f;
    padding: 16px 24px;
    margin: 30px auto;
    max-width: 500px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-subtext {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #2a7c3f;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #666;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #2a7c3f;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.legal-page {
    background-color: #ffffff;
}

.legal-content {
    padding: 60px 0;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #2a7c3f;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.legal-section a {
    color: #2a7c3f;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1f5d2f;
}

.legal-updated {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-top: 40px;
}

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

.cookie-table thead th {
    background-color: #f4f4f2;
    padding: 12px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid #d4d4d0;
    color: #1a1a1a;
}

.cookie-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #e4e4e0;
    font-size: 14px;
    color: #444;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-horizontal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .two-col-layout,
    .editorial-layout,
    .two-col-reverse,
    .service-detail-block,
    .contact-grid-asymmetric {
        flex-direction: column;
    }

    .col-narrow,
    .col-wide,
    .editorial-sidebar,
    .col-visual,
    .service-detail-image,
    .contact-visual-block {
        flex: 1 1 100%;
    }

    .services-grid-magazine {
        flex-direction: column;
    }

    .service-card-mag {
        width: 100%;
    }

    .trust-grid,
    .values-columns,
    .steps-grid {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}