/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2C2C2C;
    background-color: #FAFAFA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1A1A1A;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #C7522B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #A03E1F;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

button {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    color: #FFF;
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-accept {
    background-color: #C7522B;
    color: #FFF;
}

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

.btn-reject {
    background-color: transparent;
    color: #FFF;
    border: 2px solid #FFF;
}

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

/* Navigation */
.main-nav {
    background-color: #FFF;
    border-bottom: 1px solid #E5E5E5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2C2C2C;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #C7522B;
}

.ad-disclosure {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background-color: #F5F5F5;
    border-radius: 4px;
}

/* Editorial Container - Article-like centered layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-flow {
    background-color: #FFF;
    padding: 3rem 3rem 4rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 4rem;
}

.hero-text {
    margin-bottom: 2.5rem;
}

.intro-large {
    font-size: 1.35rem;
    line-height: 1.65;
    color: #444;
    font-weight: 400;
}

.hero-editorial img {
    width: 100%;
    margin-top: 2rem;
    border-radius: 4px;
}

/* Story Sections */
.story-section {
    margin-bottom: 4rem;
}

.image-text-flow img.inline-image {
    margin: 2rem 0;
    border-radius: 4px;
}

/* Inline CTA */
.inline-cta {
    background-color: #FDF5F2;
    border-left: 4px solid #C7522B;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.inline-cta p {
    margin: 0;
}

.text-link {
    color: #C7522B;
    font-weight: 600;
    text-decoration: underline;
}

.text-link:hover {
    color: #A03E1F;
}

/* Testimonials */
.testimonial-inline,
.testimonial-block {
    background-color: #F9F9F9;
    border-left: 3px solid #C7522B;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial-inline p,
.testimonial-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite,
.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
    display: block;
}

blockquote {
    margin: 0;
}

/* Services Showcase */
.services-reveal {
    background-color: #FAFAFA;
    padding: 3rem 2rem;
    margin-left: -3rem;
    margin-right: -3rem;
    margin-top: 4rem;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background-color: #FFF;
    padding: 2rem;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #C7522B;
    margin: 1.5rem 0;
}

.service-btn {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #C7522B;
    color: #FFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
}

.service-btn:hover {
    background-color: #A03E1F;
}

/* Services Detail Page */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.service-detail-card {
    background-color: #FFF;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    overflow: hidden;
}

.service-detail-header {
    background-color: #FAFAFA;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid #E5E5E5;
}

.service-detail-header h3 {
    margin: 0;
}

.service-price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C7522B;
}

.service-detail-body {
    padding: 2rem;
}

.service-detail-body h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1A1A1A;
}

.service-detail-body ul {
    margin-bottom: 2rem;
}

.service-detail-body li {
    line-height: 1.6;
    color: #555;
}

.service-btn-large {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #C7522B;
    color: #FFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 2rem;
}

.service-btn-large:hover {
    background-color: #A03E1F;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E5E5;
}

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

.faq-item h4 {
    color: #1A1A1A;
    margin-top: 0;
}

/* CTA Section */
.cta-section {
    background-color: #FDF5F2;
    padding: 3rem 2rem;
    margin-left: -3rem;
    margin-right: -3rem;
    margin-top: 3rem;
}

.cta-form-container {
    background-color: #FFF;
    padding: 2.5rem;
    border-radius: 6px;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cta-form-container h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C7522B;
}

.submit-btn {
    padding: 1.2rem 2rem;
    background-color: #C7522B;
    color: #FFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
}

.submit-btn:hover {
    background-color: #A03E1F;
}

.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: #C7522B;
    color: #FFF;
}

.cta-button:hover {
    background-color: #A03E1F;
    color: #FFF;
}

.cta-button-secondary {
    background-color: transparent;
    color: #C7522B;
    border: 2px solid #C7522B;
}

.cta-button-secondary:hover {
    background-color: #C7522B;
    color: #FFF;
}

/* Page Headers */
.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E5E5;
}

.page-header h1 {
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-info-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-block {
    background-color: #FAFAFA;
    padding: 2rem;
    border-radius: 6px;
}

.contact-info-block h2 {
    margin-top: 0;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.contact-detail p {
    margin-bottom: 0.5rem;
    color: #555;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: #777;
}

/* Thanks Page */
.thanks-section {
    text-align: center;
    padding: 2rem 0;
}

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

.thanks-message {
    text-align: left;
    margin: 3rem 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #C7522B;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.selected-service-info {
    margin: 2rem 0;
}

.service-confirmation {
    background-color: #E8F5E9;
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    border-radius: 4px;
}

.selected-service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2E7D32;
    margin-top: 0.5rem;
}

.thanks-cta {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #E5E5E5;
}

.thanks-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: #1A1A1A;
    color: #CCC;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: #FFF;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #CCC;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFF;
}

.disclaimer {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 2rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #C7522B;
    color: #FFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(199, 82, 43, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #A03E1F;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 82, 43, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .editorial-container {
        padding: 2rem 1rem;
    }

    .story-flow {
        padding: 2rem 1.5rem;
    }

    .services-reveal,
    .cta-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .cta-form-container {
        padding: 1.5rem;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .cta-button,
    .cta-button-secondary {
        display: block;
        text-align: center;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .intro-large {
        font-size: 1.15rem;
    }

    .service-price,
    .service-price-large {
        font-size: 1.5rem;
    }
}