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

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

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

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

.brand {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.article-hero {
    background-color: #ffffff;
    padding: 4rem 2rem 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.hero-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    background-color: #ffffff;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.content-narrow h2:first-child {
    margin-top: 0;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2a2a2a;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

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

.content-narrow li {
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    background-color: #f5f5f5;
}

.split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.split-text p {
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: left;
}

.btn-inline {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-inline:hover {
    background-color: #234a23;
}

.btn-inline-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-inline-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.method-steps {
    margin: 2rem 0;
}

.step-block {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #2c5f2d;
}

.step-block h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c5f2d;
}

.step-block p {
    color: #3a3a3a;
}

.testimonial-section {
    background-color: #f8f8f8;
}

.testimonial {
    padding: 2rem;
    border-left: 4px solid #2c5f2d;
    font-style: italic;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.services-list {
    margin: 2.5rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin-bottom: 1rem;
    color: #3a3a3a;
}

.service-price {
    font-family: 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.75rem 1.5rem;
    background-color: #f0f0f0;
    color: #2a2a2a;
    border: 2px solid #d0d0d0;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #e0e0e0;
    border-color: #b0b0b0;
}

.btn-select.selected {
    background-color: #2c5f2d;
    color: #ffffff;
    border-color: #2c5f2d;
}

.form-section {
    background-color: #f8f8f8;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-family: 'Arial', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a23;
}

.services-detail-section {
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-price-large {
    font-family: 'Arial', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5f2d;
}

.service-body p {
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.service-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-body li {
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.service-duration {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.contact-block p {
    color: #3a3a3a;
    line-height: 1.7;
}

.contact-block a {
    color: #2c5f2d;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
}

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

.thanks-icon {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.thanks-service {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f7f0;
    border-left: 4px solid #2c5f2d;
    border-radius: 4px;
}

.thanks-service p {
    margin: 0;
    color: #2a2a2a;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.cookie-table th {
    background-color: #f0f0f0;
    padding: 0.8rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #d0d0d0;
}

.cookie-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
}

.site-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-copy {
    font-family: 'Arial', sans-serif;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

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

.btn-accept {
    padding: 0.75rem 1.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #234a23;
}

.btn-reject {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
    }
}

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

    .article-hero {
        padding: 2.5rem 1.5rem;
    }

    .article-hero h1 {
        font-size: 1.7rem;
    }

    .content-narrow {
        padding: 2.5rem 1.5rem;
    }

    .content-wide {
        padding: 2.5rem 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}