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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #7a9e89;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--bg-light);
    color: var(--text-medium);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.article-intro {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
}

.hero-image {
    margin: 50px 0;
    width: 100%;
    background-color: var(--bg-light);
}

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

.content-block {
    margin: 40px 0;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 50px 0 25px 0;
    color: var(--text-dark);
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 25px;
}

.content-block ul,
.content-block ol {
    margin: 25px 0 25px 30px;
}

.content-block li {
    margin-bottom: 12px;
}

.inline-image-left,
.inline-image-right,
.inline-image-center {
    margin: 50px 0;
    background-color: var(--bg-light);
}

.inline-image-left {
    float: left;
    width: 400px;
    margin-right: 40px;
    margin-bottom: 30px;
}

.inline-image-right {
    float: right;
    width: 400px;
    margin-left: 40px;
    margin-bottom: 30px;
}

.inline-image-left img,
.inline-image-right img,
.inline-image-center img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-inline {
    background-color: var(--bg-light);
    padding: 35px 40px;
    margin: 50px 0;
    border-left: 4px solid var(--primary-color);
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

.habit-list {
    background-color: var(--bg-light);
    padding: 30px 40px;
    margin: 30px 0;
    list-style: none;
}

.habit-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.habit-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.testimonial-section {
    margin: 60px 0;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-medium);
}

.testimonial footer {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
}

.services-preview {
    margin: 70px 0;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 35px;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    margin-bottom: 15px;
}

.price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.select-service,
.submit-button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover,
.submit-button:hover {
    background-color: var(--secondary-color);
}

.form-section {
    background-color: var(--bg-light);
    padding: 50px 40px;
    margin: 60px 0;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    background-color: var(--bg-white);
}

.form-group textarea {
    resize: vertical;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
}

.submit-button {
    width: 100%;
    margin-top: 10px;
}

.final-cta {
    text-align: center;
    margin: 70px 0;
    padding: 50px 40px;
    background-color: var(--primary-color);
}

.final-cta h3 {
    color: var(--bg-white);
    font-size: 32px;
    margin-bottom: 25px;
}

.cta-button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

.disclaimer-section {
    margin: 70px 0 50px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 30px 30px 30px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

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

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

.footer-section ul li a {
    font-size: 15px;
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--border-color);
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-medium);
    flex: 1;
}

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

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

.cookie-accept,
.cookie-reject {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

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

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

.service-content ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

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

.service-for {
    font-style: italic;
    color: var(--text-medium);
    margin: 20px 0;
}

.price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.contact-layout {
    margin: 50px 0;
}

.contact-info-section {
    background-color: var(--bg-light);
    padding: 50px;
}

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

.contact-detail h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-value {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 80px auto;
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-next-steps {
    background-color: var(--bg-light);
    padding: 40px;
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-next-steps ol {
    margin-left: 20px;
}

.thanks-next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
}

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

.button-primary,
.button-secondary {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.button-primary:hover,
.button-secondary:hover {
    opacity: 0.8;
}

.legal-content {
    max-width: 800px;
}

.legal-content .content-block {
    margin: 35px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 25px 0 15px 0;
}

.legal-content p,
.legal-content li {
    font-size: 17px;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    font-size: 15px;
}

.cookies-table td {
    font-size: 15px;
}

.about-hero {
    margin: 50px 0;
    background-color: var(--bg-light);
}

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

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-intro {
        font-size: 19px;
    }

    .inline-image-left,
    .inline-image-right {
        float: none;
        width: 100%;
        margin: 40px 0;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .button-primary,
    .button-secondary {
        text-align: center;
    }
}