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

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

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

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #6c6c6c;
    color: #ffffff;
}

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

.header-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.nav-floating {
    display: flex;
    gap: 30px;
}

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

.nav-floating a:hover {
    color: #4a7c59;
}

.ad-label {
    font-size: 12px;
    color: #999999;
    padding: 6px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
}

.editorial-layout {
    background-color: #ffffff;
}

.story-flow {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.hero-text-narrow {
    max-width: 680px;
    margin: -100px auto 0;
    background-color: #ffffff;
    padding: 50px 40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.text-block-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 30px;
}

.intro-story {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.intro-story p {
    margin-bottom: 24px;
}

.inline-image-section {
    padding: 60px 0;
}

.inline-img-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.caption-text {
    max-width: 680px;
    margin: 20px auto 0;
    padding: 0 30px;
}

.caption-text p {
    font-size: 16px;
    color: #666666;
    font-style: italic;
}

.text-deep {
    padding: 80px 0;
}

.text-deep h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-deep p {
    margin-bottom: 24px;
}

.cta-inline {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.cta-box-centered {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

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

.btn-cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-primary:hover {
    background-color: #3d6649;
}

.story-continuation {
    padding: 60px 0;
}

.story-continuation h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.story-continuation p {
    margin-bottom: 24px;
}

.image-text-flow {
    padding: 80px 0;
    background-color: #fafafa;
}

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.services-cards-inline {
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #4a7c59;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.testimonial-inline {
    padding: 80px 0;
    background-color: #f0f4f0;
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: #666666;
}

.cta-bottom {
    padding: 80px 0;
}

.cta-box-wide {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-box-wide h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-box-wide p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #3d6649;
}

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

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

.form-container-narrow h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.disclaimer-text p {
    margin: 0;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 50px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    color: #999999;
}

.footer-copy {
    font-size: 13px;
    color: #999999;
}

.page-hero-small {
    padding: 80px 0 40px;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-detailed {
    padding: 40px 0 80px;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-image-wrapper {
    flex: 1;
    min-width: 400px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #e5e5e5;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

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

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

.service-list {
    margin: 30px 0;
    padding-left: 20px;
}

.service-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-price-block {
    margin-top: 30px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
}

.price-label {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
}

.cta-services {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.cta-services h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-story,
.about-approach,
.methodology-section,
.values-section,
.team-intro,
.about-clients {
    padding: 60px 0;
}

.about-story {
    background-color: #fafafa;
}

.methodology-section {
    background-color: #f4f4f4;
}

.about-clients {
    background-color: #fafafa;
}

.about-approach h2,
.methodology-section h2,
.values-section h2,
.team-intro h2,
.about-clients h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.cta-about {
    padding: 80px 0;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.contact-details-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.contact-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.additional-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.info-list {
    margin: 30px 0;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-info {
    margin: 40px 0;
}

.thanks-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e0e0e0;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.legal-date {
    font-size: 16px;
    color: #666666;
    font-style: italic;
}

.legal-content {
    padding: 40px 0 80px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.legal-content li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-floating {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-text-narrow {
        margin-top: 0;
        padding: 30px 25px;
    }

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

    .lead-text {
        font-size: 18px;
    }

    .text-block-narrow {
        padding: 40px 25px;
    }

    .text-deep h2,
    .story-continuation h2 {
        font-size: 26px;
    }

    .services-cards-inline {
        flex-direction: column;
    }

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

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-image-wrapper,
    .service-detail-content {
        min-width: 100%;
    }

    .contact-details-box {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}