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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c5e;
    --accent-color: #7ba089;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.nav-minimal {
    background-color: var(--bg-white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-minimal {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.spacious-intro {
    padding: 120px 40px;
    background-color: var(--bg-light);
}

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

.content-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.3;
}

.large-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-medium);
}

.services-minimal {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-dark);
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card-large {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: var(--bg-white);
}

.service-card-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card-large h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card-large p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.form-section-clean {
    padding: 120px 40px;
    background-color: var(--bg-light);
}

.form-wrapper-center {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper-center h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-minimal select,
.contact-form-minimal input,
.contact-form-minimal textarea {
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
}

.contact-form-minimal select:focus,
.contact-form-minimal input:focus,
.contact-form-minimal textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.trust-section {
    padding: 120px 40px;
    background-color: var(--bg-white);
}

.testimonials-minimal {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 48px auto 0;
}

.testimonials-minimal blockquote {
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.testimonials-minimal blockquote p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonials-minimal cite {
    font-size: 15px;
    color: var(--text-medium);
    font-style: normal;
}

.footer-minimal {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 24px 40px;
    z-index: 1000;
    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: 40px;
}

.cookie-content p {
    color: var(--bg-light);
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 32px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: inherit;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-light);
    border: 1px solid var(--bg-light);
}

.cookie-btn:hover {
    opacity: 0.8;
}

.page-hero-minimal {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 0 40px;
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-page {
    font-size: 20px;
    color: var(--text-medium);
}

.about-content-spacious {
    padding: 60px 40px 120px;
}

.content-wrapper-large {
    max-width: 1200px;
    margin: 0 auto;
}

.about-block {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

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

.about-block img {
    width: 50%;
    height: auto;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text-block p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 300px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.services-detail-section {
    padding: 60px 40px 120px;
}

.services-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

.service-image-block {
    width: 45%;
    background-color: var(--bg-light);
}

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

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

.service-info-block h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 15px;
    color: var(--text-medium);
    padding: 10px 0 10px 28px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 32px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-cta {
    padding: 14px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: var(--secondary-color);
}

.cta-section-bottom {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.cta-content-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.cta-primary-large {
    display: inline-block;
    padding: 18px 56px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary-large:hover {
    background-color: var(--secondary-color);
}

.contact-section-layout {
    padding: 60px 40px 120px;
}

.contact-wrapper-centered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

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

.contact-form-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.form-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-service {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
}

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

.btn-back-home,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-back-home {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-back-home:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.legal-page-section {
    padding: 60px 40px 120px;
}

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

.legal-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.legal-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-update {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

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

.gdpr-table th,
.cookie-table th {
    background-color: var(--bg-light);
    padding: 14px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td,
.cookie-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-medium);
}

.no-link {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-minimal {
        margin: 40px auto;
        padding: 0 20px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .spacious-intro {
        padding: 60px 20px;
    }

    .content-center h2 {
        font-size: 32px;
    }

    .services-minimal {
        margin: 60px auto;
        padding: 0 20px;
    }

    .section-title-large {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .about-block,
    .about-block.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-block img {
        width: 100%;
    }

    .values-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 60px;
    }

    .service-image-block {
        width: 100%;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-wrapper-centered {
        flex-direction: column;
        gap: 60px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

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