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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e7cc3;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --hover-color: #1a252f;
}

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

.ad-notice {
    background-color: var(--light-bg);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

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

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    font-style: italic;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.story-intro {
    background-color: var(--white);
}

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

.story-intro p {
    font-size: 18px;
    margin-bottom: 25px;
}

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

.inline-cta-soft p {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--primary-color);
}

.image-break {
    margin: 60px 0;
}

.image-break figure {
    margin: 0;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--light-bg);
}

.image-break figcaption {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
    padding: 0 20px;
}

.problem-section {
    background-color: var(--light-bg);
}

.problem-section h2,
.insight-reveal h2,
.story-continuation h2,
.trust-building h2,
.story-conclusion h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.problem-section p,
.insight-reveal p,
.story-continuation p {
    font-size: 18px;
    margin-bottom: 25px;
}

blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: var(--white);
    border-left: 5px solid var(--accent-color);
    font-size: 20px;
    font-style: italic;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #888;
}

.insight-reveal {
    background-color: var(--white);
}

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

.insight-item {
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

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

.insight-item p {
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-inline {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-card {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.testimonial-author {
    font-size: 16px;
    text-align: right;
    opacity: 0.9;
}

.story-continuation {
    background-color: var(--white);
}

.principle-list {
    margin-left: 25px;
    margin-top: 30px;
}

.principle-list li {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.principle-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.trust-building {
    background-color: var(--light-bg);
}

.service-cards-editorial {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    padding: 35px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 13px;
    border-radius: 3px;
    font-weight: 600;
}

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

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

.service-duration {
    font-size: 15px;
    color: #666;
    margin-top: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.service-select-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    font-family: inherit;
}

.service-select-btn:hover {
    background-color: var(--primary-color);
}

.form-section {
    background-color: var(--white);
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 45px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: var(--hover-color);
}

.final-testimonial {
    background-color: var(--white);
}

.story-conclusion {
    background-color: var(--light-bg);
}

.disclaimer-section {
    background-color: #f5f5f5;
    border-top: 2px solid var(--border-color);
}

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

.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 40px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.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;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    transition: background-color 0.3s;
}

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

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

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

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 80px 40px 60px;
    background-color: var(--light-bg);
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-story {
    background-color: var(--white);
}

.about-story h2 {
    font-size: 36px;
    margin: 40px 0 25px;
    color: var(--primary-color);
}

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

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

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

.value-item p {
    font-size: 17px;
    line-height: 1.6;
}

.cta-about {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.services-detailed {
    background-color: var(--white);
}

.service-detail-card {
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid var(--accent-color);
}

.service-detail-header {
    background-color: var(--light-bg);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.service-detail-content {
    padding: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.6;
}

.service-timing {
    font-size: 15px;
    color: #666;
    margin: 20px 0;
    font-style: italic;
}

.service-detail-card.premium-service {
    border: 2px solid var(--secondary-color);
}

.contact-content {
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-info-block,
.contact-image-block {
    flex: 1;
    min-width: 280px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
}

.contact-note p {
    font-size: 15px;
    color: #666;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: var(--light-bg);
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-additional p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-additional a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-additional a:hover {
    color: var(--primary-color);
}

.thanks-content {
    background-color: var(--white);
    text-align: center;
    padding: 80px 40px;
}

.thanks-center {
    max-width: 700px;
}

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

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

.thanks-details {
    margin: 40px 0;
    text-align: left;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-selected {
    padding: 20px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    color: var(--primary-color);
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.thanks-next-steps ol li {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-content .legal-hero {
    padding: 60px 40px 40px;
    background-color: var(--light-bg);
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-updated {
    font-size: 15px;
    color: #666;
}

.legal-text {
    background-color: var(--white);
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-text h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-text h4 {
    font-size: 19px;
    margin: 25px 0 12px;
    color: var(--primary-color);
}

.legal-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-text ul,
.legal-text ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-text ul li,
.legal-text ol li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--primary-color);
}

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

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

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

    .hero-subtitle {
        font-size: 18px;
    }

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

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

    .problem-section h2,
    .insight-reveal h2,
    .story-continuation h2,
    .trust-building h2 {
        font-size: 28px;
    }

    .service-price {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
}