* {
    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;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #1a4d2e;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #1a4d2e;
}

.ad-notice {
    font-size: 12px;
    color: #777;
    font-style: italic;
    padding-left: 15px;
    border-left: 1px solid #ddd;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #1a4d2e;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #2d6b47;
}

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

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

.editorial-content {
    padding: 60px 0;
}

.hero-editorial {
    margin-bottom: 50px;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.hero-image {
    margin: 40px 0;
    background-color: #e8ede8;
}

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

.story-section {
    margin: 50px 0;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a4d2e;
}

.story-section p {
    margin-bottom: 20px;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f0f4f0;
}

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

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: #666;
    padding: 15px;
    text-align: center;
}

.cta-inline {
    margin: 35px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a4d2e;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #2d6b47;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #1a4d2e;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #1a4d2e;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1a4d2e;
    color: #ffffff;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 3px solid #1a4d2e;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-item p {
    margin-bottom: 0;
    color: #555;
}

.testimonial {
    background-color: #f9faf9;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #1a4d2e;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

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

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

.services-grid {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

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

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.service-card .price {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #1a4d2e;
    margin-top: 10px;
}

.consultation-form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f5f8f5;
}

.consultation-form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a4d2e;
}

.consultation-form-section > p {
    margin-bottom: 30px;
    color: #555;
}

.consultation-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff9e6;
    border-left: 4px solid #d4a017;
}

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

.references-section {
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a4d2e;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list a {
    color: #1a4d2e;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

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

    .story-section h2 {
        font-size: 26px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .consultation-form-section {
        padding: 25px;
    }

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

.thanks-page {
    padding: 80px 0;
    text-align: center;
}

.thanks-page h1 {
    font-size: 38px;
    color: #1a4d2e;
    margin-bottom: 20px;
}

.thanks-page p {
    font-size: 19px;
    margin-bottom: 15px;
}

.thanks-page .service-selected {
    font-weight: bold;
    color: #1a4d2e;
}

.thanks-page a {
    color: #1a4d2e;
    text-decoration: none;
}

.thanks-page a:hover {
    text-decoration: underline;
}
