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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #2d6a4f;
    letter-spacing: 0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: #2b2b2b;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2d6a4f;
}

.ad-disclosure {
    background-color: #f4f4f2;
    padding: 0.4rem 1rem;
    border-radius: 3px;
}

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

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-magazine {
    margin-bottom: 4rem;
}

.hero-columns {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-text-large {
    flex: 1;
}

.hero-text-large h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-text-large p {
    font-size: 1.15rem;
    color: #4a4a4a;
    max-width: 550px;
}

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

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

.intro-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 3rem 0;
}

.intro-left {
    flex: 1.5;
}

.intro-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.intro-left p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.intro-right {
    flex: 1;
    background-color: #d9d9d7;
}

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

.feature-cards {
    margin-bottom: 5rem;
}

.card-grid-magazine {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.card-image {
    background-color: #d9d9d7;
    height: 250px;
}

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

.card-content {
    padding: 1.8rem;
}

.card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
    font-weight: 400;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-overview {
    margin-bottom: 5rem;
    background-color: #f9f9f7;
    padding: 4rem 3rem;
}

.services-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header-centered h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.services-header-centered p {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.services-magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-block {
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #2d6a4f;
    display: flex;
    flex-direction: column;
}

.service-number {
    font-size: 3rem;
    color: #d0d0ce;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.service-block h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
    font-weight: 400;
}

.service-block p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    color: #2d6a4f;
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.select-service-btn {
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
    font-family: 'Arial', sans-serif;
}

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

.contact-form-section {
    margin-bottom: 5rem;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border: 1px solid #e0e0e0;
}

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

.form-intro {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
    font-weight: 400;
}

.form-intro p {
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2b2b2b;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: #fafaf8;
}

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

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

.submit-btn {
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
    font-family: 'Arial', sans-serif;
}

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

.testimonials-magazine {
    margin-bottom: 5rem;
}

.testimonials-magazine h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.testimonial-columns {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background-color: #f4f4f2;
    border-left: 3px solid #2d6a4f;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.final-cta-section {
    margin-bottom: 3rem;
}

.cta-content-centered {
    text-align: center;
    padding: 3rem;
    background-color: #2d6a4f;
    color: #ffffff;
}

.cta-content-centered h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-content-centered p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-link {
    display: inline-block;
    background-color: #ffffff;
    color: #2d6a4f;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #f0f0ee;
}

.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 3rem 2rem 1.5rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #777;
    margin-top: 1rem;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.about-hero {
    margin-bottom: 4rem;
}

.about-header-wide {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-header-wide h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
}

.about-header-wide p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.about-story-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.story-text-block {
    flex: 1;
}

.story-text-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.story-text-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.story-image-block {
    flex: 1;
    background-color: #d9d9d7;
}

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

.philosophy-section {
    margin-bottom: 5rem;
    background-color: #f9f9f7;
    padding: 4rem 3rem;
}

.philosophy-columns {
    display: flex;
    gap: 3rem;
}

.philosophy-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
}

.philosophy-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
    font-weight: 400;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 5rem;
}

.team-section h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 400;
}

.team-magazine-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background-color: #d9d9d7;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.team-member p {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.values-narrative {
    margin-bottom: 5rem;
}

.values-text-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.values-text-centered h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.values-text-centered p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.cta-about-bottom {
    margin-bottom: 3rem;
}

.cta-box-centered {
    text-align: center;
    padding: 3rem;
    background-color: #f4f4f2;
    border: 2px solid #2d6a4f;
}

.cta-box-centered h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
    font-weight: 400;
}

.cta-box-centered p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1f4d37;
}

.services-hero-simple {
    text-align: center;
    margin-bottom: 4rem;
}

.services-hero-simple h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.services-hero-simple p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-detailed-layout {
    margin-bottom: 5rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

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

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

.service-description {
    flex: 1;
}

.service-description h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.service-description p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: bold;
}

.service-pricing-info {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.price-value {
    font-size: 1.8rem;
    color: #2d6a4f;
    margin-left: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
}

.service-cta-bottom {
    margin-bottom: 3rem;
}

.cta-container {
    text-align: center;
    padding: 3rem;
    background-color: #2d6a4f;
    color: #ffffff;
}

.cta-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-layout {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.contact-details-block h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d6a4f;
    font-weight: 400;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    background-color: #d9d9d7;
}

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

.contact-note-section {
    margin-bottom: 3rem;
}

.note-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f7;
    padding: 2.5rem;
}

.note-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.note-container p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.note-container a {
    color: #2d6a4f;
    text-decoration: underline;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
    font-weight: 400;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.selected-service-info {
    background-color: #f9f9f7;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #2d6a4f;
}

.thanks-details {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
    font-weight: 400;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.thanks-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d6a4f;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2d6a4f;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #f4f4f2;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
}

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

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

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d6a4f;
    font-weight: 400;
}

.legal-content h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d6a4f;
    font-weight: 400;
}

.legal-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d6a4f;
    font-weight: 400;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-content a {
    color: #2d6a4f;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-columns,
    .intro-split,
    .about-story-layout,
    .contact-info-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .testimonial-columns,
    .philosophy-columns,
    .team-magazine-grid {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .main-nav ul {
        gap: 1.5rem;
    }

    .hero-text-large h2 {
        font-size: 2rem;
    }

    .services-header-centered h3,
    .about-header-wide h2,
    .services-hero-simple h2,
    .contact-hero h2 {
        font-size: 2rem;
    }

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

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