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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
    --success-color: #2d7a4f;
    --error-color: #c1384a;
}

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

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

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

.brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.editorial-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 20px 5rem;
}

.story-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.story-header h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    height: auto;
    margin: 2rem 0 3rem;
    border-radius: 4px;
}

.story-intro {
    margin-bottom: 3.5rem;
}

.opening-paragraph {
    font-size: 1.3rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
}

.story-intro p {
    margin-bottom: 1.5rem;
}

.inline-cta-section {
    margin: 4rem 0;
}

.cta-box {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
}

.cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn-inline {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border-radius: 3px;
    transition: background 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    line-height: 1.3;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.3rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.insight-box {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.insight-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

.story-list {
    margin: 2rem 0 2rem 2rem;
    line-height: 1.8;
}

.story-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.methodology-cards {
    margin: 2.5rem 0;
}

.method-card {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

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

.testimonial-inline {
    margin: 4rem 0;
}

.testimonial {
    border-left: 5px solid var(--accent-color);
    padding: 2rem 0 2rem 2.5rem;
    font-style: italic;
    font-size: 1.15rem;
    background: var(--bg-light);
    margin: 3rem 0;
}

.testimonial p {
    margin-bottom: 1rem;
}

.testimonial footer {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.benefit-flow {
    margin: 2.5rem 0;
}

.benefit-item {
    margin-bottom: 3rem;
}

.benefit-item h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.service-cards {
    margin: 3rem 0;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    position: relative;
    transition: border-color 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: var(--bg-light);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1.2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.service-features span {
    color: var(--text-light);
}

.service-features span:before {
    content: '✓ ';
    color: var(--success-color);
    font-weight: 600;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.urgency-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--bg-white);
    padding: 2.5rem;
    margin: 4rem 0;
    border-radius: 4px;
}

.urgency-box h3 {
    margin-top: 0;
    color: var(--bg-white);
}

.urgency-box p {
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.form-section {
    margin: 5rem 0;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.form-intro {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 3px;
    background: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.form-privacy {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 110;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.site-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

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

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

.footer-section h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    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: 2rem auto 0;
    padding: 1.5rem 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
}

.contact-card h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.location-details {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.location-details ul {
    margin: 1rem 0 1rem 2rem;
}

.faq-section {
    margin: 4rem 0;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.services-detailed {
    margin: 3rem 0;
}

.service-full {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-badge {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.service-description {
    margin-top: 2rem;
}

.feature-list {
    margin: 1.5rem 0 2rem 2rem;
    line-height: 1.8;
}

.feature-list li {
    margin-bottom: 0.8rem;
}

.featured-service {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.premium-service {
    background: linear-gradient(135deg, var(--bg-light), #fff);
    padding: 2.5rem;
    border-radius: 4px;
    border: 3px solid var(--accent-color);
}

.service-guarantee {
    background: var(--bg-light);
    padding: 2.5rem;
    margin: 4rem 0;
    border-radius: 4px;
    border-left: 5px solid var(--success-color);
}

.booking-cta {
    margin: 4rem 0;
}

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

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 4px;
}

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

.thanks-box h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
}

.next-steps h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.steps-list {
    margin: 1.5rem 0 0 1.5rem;
    counter-reset: step-counter;
    list-style: none;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 0.5rem;
}

.steps-list li strong {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.steps-list li p {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
}

.selected-service-box {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.selected-service-box h3 {
    margin-top: 0;
    color: var(--bg-white);
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.thanks-actions {
    margin: 2.5rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.support-info p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.support-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.support-info a:hover {
    text-decoration: underline;
}

.legal-page .legal-content {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

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

.update-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

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

.principle-cards {
    margin: 2.5rem 0;
}

.principle-card {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

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

.stats-grid {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

    .subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .editorial-flow {
        padding: 2rem 15px 3rem;
    }

    .story-header h1 {
        font-size: 1.7rem;
    }

    .opening-paragraph {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-price {
        font-size: 1.7rem;
    }
}