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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2c5f7c;
    --accent-color: #d4a574;
    --text-dark: #2a2a2a;
    --text-medium: #555;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --font-serif: Georgia, "Times New Roman", serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.minimal-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 16px;
}

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

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

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

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

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

.headline {
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.subheadline {
    font-size: 22px;
    line-height: 1.4;
    color: var(--text-medium);
    font-weight: 400;
}

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

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

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

.article-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.article-content p,
.story-section p,
.insight-section p,
.problem-amplification p,
.methodology-section p,
.trust-section p {
    margin-bottom: 24px;
}

.drop-cap::first-letter {
    font-size: 72px;
    line-height: 0.8;
    float: left;
    margin: 8px 10px 0 0;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.cta-link {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

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

.story-section,
.insight-section,
.problem-amplification,
.methodology-section,
.trust-section,
.services-reveal,
.final-cta-section {
    margin-top: 60px;
}

.story-section h2,
.insight-section h2,
.problem-amplification h2,
.methodology-section h2,
.trust-section h2,
.services-reveal h2,
.final-cta-section h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-size: 19px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-medium);
}

.benefits-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-block {
    margin: 60px 0;
    padding: 50px 40px;
    background: var(--primary-color);
    border-radius: 8px;
    text-align: center;
}

.cta-block h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c89a68;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.service-card {
    padding: 35px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card.featured-service {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, #fffbf5 0%, var(--bg-white) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.service-duration {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    margin-top: 60px;
    padding: 50px 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.form-section.hidden {
    display: none;
}

.form-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.selected-service-display {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
    padding: 16px;
    background: white;
    border-radius: 4px;
}

.selected-service-display span {
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-link {
    display: inline-block;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-link:hover {
    background: #c89a68;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

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

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

.footer-section h4 {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-content {
    margin-top: 40px;
}

.contact-info-block,
.service-booking-note {
    margin-bottom: 50px;
}

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

.contact-detail h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
}

.service-booking-note h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-booking-note p {
    margin-bottom: 16px;
}

.service-booking-note a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.service-booking-note a:hover {
    text-decoration: underline;
}

.services-full-list {
    margin-top: 40px;
}

.service-detailed {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

.service-detailed.featured {
    background: linear-gradient(to bottom, #fffbf5 0%, var(--bg-white) 100%);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    position: relative;
}

.featured-indicator {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.price-display {
    font-family: var(--font-sans);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.service-body p {
    margin-bottom: 20px;
}

.service-body h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 16px;
}

.service-body ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-body ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-best-for {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-size: 16px;
}

.service-select-link {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.faq-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

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

.faq-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-content {
    margin-top: 40px;
}

.confirmation-block {
    margin-bottom: 50px;
}

.confirmation-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.next-step {
    margin-bottom: 30px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 6px;
}

.next-step h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.next-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.booking-reference {
    padding: 24px;
    background: var(--bg-white);
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    margin-bottom: 40px;
}

.booking-reference p {
    font-family: var(--font-sans);
    font-size: 16px;
    margin-bottom: 8px;
}

.booking-reference span {
    font-weight: 700;
    color: var(--secondary-color);
}

.small-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.additional-help h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.additional-help p {
    font-size: 16px;
    line-height: 1.6;
}

.additional-help a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.additional-help a:hover {
    text-decoration: underline;
}

.legal-page .legal-content {
    font-size: 16px;
    line-height: 1.7;
}

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

.legal-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-medium);
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 14px;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

.value-point {
    margin-bottom: 40px;
}

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

.value-point p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    margin-top: 50px;
}

.team-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .minimal-nav {
        padding: 16px 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-top: 1px solid var(--border-color);
    }

    .nav-links li a {
        display: block;
        padding: 16px 20px;
    }

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

    .headline {
        font-size: 36px;
    }

    .subheadline {
        font-size: 18px;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-link {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .form-section {
        padding: 30px 20px;
    }

    .cta-block {
        padding: 30px 20px;
    }

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

    .service-detailed.featured {
        padding: 30px 20px;
    }

    .featured-indicator {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 28px;
    }

    .service-price,
    .price-display {
        font-size: 28px;
    }

    .service-card {
        padding: 24px;
    }
}
