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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #ed8936;
    --text-color: #2d3748;
    --text-light: #4a5568;
    --bg-color: #ffffff;
    --bg-alt: #f7fafc;
    --border-color: #e2e8f0;
    --success-color: #38a169;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 54, 93, 0.98);
    color: 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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.btn-accept:hover {
    background: #dd6b20;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-main);
}

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

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

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

.editorial-layout {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-header {
    text-align: center;
    padding: 40px 0;
}

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

.intro-text {
    font-size: 22px;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.inline-image {
    margin: 40px -20px;
}

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

.story-section {
    padding: 30px 0;
}

.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-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.story-section h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 600;
}

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

.story-section ul,
.story-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.story-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.alt-bg {
    background: var(--bg-alt);
    padding: 50px 40px;
    margin: 0 -40px;
    border-radius: 8px;
}

.inline-cta {
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-alt);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.cta-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-main);
}

.cta-link:hover {
    text-decoration: underline;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-left: 5px solid var(--secondary-color);
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-author {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
    font-family: var(--font-main);
}

.insight-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.insight-item {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.insight-item h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-family: var(--font-main);
}

.btn-primary,
.btn-primary-large {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    font-size: 20px;
    padding: 20px 48px;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: #dd6b20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
}

.centered-btn {
    display: block;
    text-align: center;
    margin: 30px auto;
    max-width: 400px;
}

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

.service-card-editorial {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
    font-family: var(--font-main);
}

.btn-select {
    background: var(--primary-color);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

.contact-form-section {
    margin: 50px 0;
    padding: 40px;
    background: var(--bg-alt);
    border-radius: 8px;
}

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

.selected-service-display {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid var(--success-color);
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

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

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

.btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #dd6b20;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.testimonial-block {
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 8px;
    font-size: 19px;
    line-height: 1.7;
}

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

.final-cta-section {
    text-align: center;
    padding: 60px 0;
}

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

.philosophy-item,
.value-item {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.philosophy-item h3,
.value-item h3 {
    margin-top: 0;
    font-family: var(--font-main);
    color: var(--primary-color);
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.service-card-detailed {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
}

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

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

.badge-popular,
.badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
}

.badge-premium {
    background: var(--primary-color);
}

.service-header {
    background: var(--bg-alt);
    padding: 30px;
}

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

.service-duration {
    font-family: var(--font-main);
    color: var(--text-light);
    font-size: 16px;
}

.service-body {
    padding: 30px;
}

.service-includes {
    margin: 25px 0;
    padding-left: 25px;
}

.service-includes li {
    margin-bottom: 12px;
    font-family: var(--font-main);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.price-tag-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    font-family: var(--font-main);
}

.btn-select-large {
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.process-step {
    padding: 25px;
    background: var(--bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.process-step h3 {
    margin-top: 0;
    font-family: var(--font-main);
    color: var(--primary-color);
}

.contact-info-section {
    padding: 50px 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-method h3 {
    margin-top: 0;
    font-family: var(--font-main);
    color: var(--primary-color);
}

.contact-method a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.contact-note {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

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

.faq-item {
    padding: 25px;
    background: var(--bg-alt);
    border-radius: 8px;
}

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

.expectation-list {
    list-style: none;
    padding: 0;
}

.expectation-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.expectation-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 20px;
}

.alternative-cta {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-light);
}

.alternative-cta a {
    color: var(--accent-color);
    text-decoration: none;
}

.alternative-cta a:hover {
    text-decoration: underline;
}

.thanks-page .story-header {
    background: var(--bg-alt);
    padding: 60px 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
    font-family: var(--font-main);
    color: var(--primary-color);
}

.selected-service-thanks {
    margin: 30px 0;
}

.service-confirmation {
    padding: 30px;
    background: var(--bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.service-confirmation h3 {
    margin-top: 0;
    font-family: var(--font-main);
    color: var(--primary-color);
}

.price-display {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-main);
    margin: 15px 0;
}

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

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

.prep-tip {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.prep-tip h3 {
    margin-top: 0;
    font-family: var(--font-main);
    color: var(--primary-color);
}

.contact-quick {
    padding: 25px;
    background: var(--bg-alt);
    border-radius: 8px;
    font-family: var(--font-main);
    margin: 20px 0;
}

.contact-quick a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.testimonials-thanks {
    margin: 40px 0;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

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

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

.legal-page {
    font-family: var(--font-main);
}

.legal-page .story-flow {
    gap: 40px;
}

.legal-page h1 {
    font-size: 38px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-page h3 {
    font-size: 22px;
}

.legal-page h4 {
    font-size: 18px;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    line-height: 1.7;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
}

.cookie-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tbody tr:last-child {
    border-bottom: none;
}

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

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

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

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

.footer-column p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-family: var(--font-main);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

    .story-section h3 {
        font-size: 22px;
    }

    body {
        font-size: 17px;
    }

    .alt-bg {
        margin: 0 -20px;
        padding: 40px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .inline-image {
        margin: 30px -20px;
    }

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

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

    .btn-select-large {
        width: 100%;
    }

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

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

    .contact-info-section {
        padding: 40px 20px;
    }

    .next-step {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .btn-secondary {
        text-align: center;
    }
}

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

    .logo {
        font-size: 20px;
    }

    .price-tag-large {
        font-size: 28px;
    }
}
