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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #27ae60;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

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

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

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
}

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

.story-section {
    margin-bottom: 55px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

.story-section h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.story-section h4 {
    font-size: 18px;
    margin: 20px 0 12px 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.story-section p {
    margin-bottom: 18px;
    font-size: 17px;
}

.editorial-list {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.editorial-list li {
    margin-bottom: 12px;
    font-size: 17px;
}

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

.cta-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.cta-link:hover {
    color: #2980b9;
}

.highlight-section {
    background-color: var(--light-bg);
    padding: 35px;
    margin: 50px -35px;
    border-left: 4px solid var(--accent-color);
}

.insight-box {
    background-color: var(--white);
    padding: 30px;
    margin: 25px 0;
    border: 1px solid var(--border-color);
}

.insight-box h3 {
    margin-top: 0;
    font-size: 22px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    margin-top: 0;
    font-size: 24px;
    color: var(--primary-color);
}

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

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 30px;
    background-color: var(--light-bg);
}

.cta-text {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step h4 {
    margin-top: 0;
    font-size: 20px;
}

.step p {
    color: #555;
}

.testimonial-section {
    background-color: var(--light-bg);
    padding: 40px 35px;
    margin: 50px -35px;
}

.testimonial {
    border-left: 3px solid var(--accent-color);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 16px;
    background-color: var(--white);
}

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

.submit-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    background-color: #fff9e6;
    border: 1px solid #e6d5a0;
    padding: 30px;
    margin: 50px 0;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: #856404;
}

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

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 40px 30px 40px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

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

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

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #bbb;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: var(--white);
    padding: 25px 30px;
    display: none;
    z-index: 1000;
}

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

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: #95a5a6;
    color: var(--white);
}

.cookie-reject:hover {
    opacity: 0.9;
}

.service-detail {
    margin: 30px 0;
}

.pricing-block {
    background-color: var(--white);
    border: 2px solid var(--accent-color);
    padding: 25px;
    margin: 25px 0;
}

.price-label {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.price-description {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.additional-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.additional-service {
    border: 1px solid var(--border-color);
    padding: 25px;
    background-color: var(--white);
}

.additional-service h3 {
    margin-top: 0;
    font-size: 20px;
}

.process-list {
    margin: 25px 0 25px 25px;
    line-height: 1.8;
}

.process-list li {
    margin-bottom: 15px;
    font-size: 17px;
}

.faq-item {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--white);
    border-left: 3px solid var(--accent-color);
}

.faq-item h3 {
    margin-top: 0;
    font-size: 19px;
    color: var(--primary-color);
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.value-item {
    padding: 25px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.value-item h3 {
    margin-top: 0;
    font-size: 21px;
    color: var(--accent-color);
}

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

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    border-radius: 50%;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.step-box {
    background-color: var(--light-bg);
    padding: 25px;
    text-align: left;
    border-left: 4px solid var(--accent-color);
}

.step-box h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.step-box p {
    margin: 0;
    color: #555;
}

.service-confirmation {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 30px 0;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.resource-link {
    display: block;
    padding: 15px 20px;
    background-color: var(--light-bg);
    color: var(--accent-color);
    text-decoration: none;
    border-left: 3px solid var(--accent-color);
    transition: background-color 0.3s ease;
}

.resource-link:hover {
    background-color: #e8eef3;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

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

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

    .highlight-section,
    .testimonial-section {
        margin-left: 0;
        margin-right: 0;
        padding: 25px 20px;
    }

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

    .footer-content {
        flex-direction: column;
        padding: 0 20px;
    }

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

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

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

@media (min-width: 769px) {
    .values-grid,
    .next-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item,
    .step-box {
        flex: 1;
        min-width: 280px;
    }
}