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

:root {
    --primary-color: #2c3e50;
    --accent-color: #c9a875;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e1e4e8;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--accent-color);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.ad-notice {
    font-size: 13px;
    color: #666;
    padding: 6px 14px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-style: italic;
}

.editorial-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 40px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--white);
    max-width: 700px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

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

.story-intro {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 26px;
    color: var(--primary-color);
    font-weight: 400;
}

.editorial-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.editorial-content h2 {
    font-size: 36px;
    margin: 50px 0 26px 0;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 1.3;
}

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

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

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

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

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

.quote-block blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #faf8f5;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    text-align: right;
}

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

.btn-primary-inline {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.btn-primary-inline:hover {
    background-color: #34495e;
}

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

.benefit-card {
    margin: 40px 0;
    padding: 35px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    transition: box-shadow 0.3s ease;
}

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

.benefit-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 20px 0;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

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

.form-notice {
    padding: 14px 20px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    margin-bottom: 24px;
    border-radius: 4px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.btn-submit:hover {
    background-color: #34495e;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.closing-section {
    margin: 60px 0 0 0;
    font-size: 20px;
    text-align: center;
    color: var(--primary-color);
}

.page-header {
    padding: 80px 40px 40px 40px;
    text-align: center;
    background-color: var(--light-bg);
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 400;
}

.subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

.service-detailed {
    margin: 60px 0;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-price-display {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 24px 0;
}

.editorial-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.editorial-content li {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-details-block {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    padding: 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 10px;
}

.contact-note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

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

.faq-item {
    margin: 30px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    margin-top: 0;
}

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

.thanks-hero {
    margin: 60px 0 40px 0;
}

.thanks-hero h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-service-info {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--light-bg);
    font-size: 18px;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin: 24px 0;
    padding-left: 50px;
    position: relative;
    font-size: 18px;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.meanwhile-section {
    margin: 50px 0;
    text-align: left;
}

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

.legal-section {
    margin: 40px 0;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
    font-size: 16px;
}

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 20px 40px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
}

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

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

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

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

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

    .editorial-content h2 {
        font-size: 28px;
    }

    .service-detailed {
        flex-direction: column;
    }

    .service-detailed.reverse {
        flex-direction: column;
    }

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

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