/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #1a5c8b;
}

ul {
    list-style-position: inside;
}

/* Ad disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.813rem;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: #34495e;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Editorial content - main article style */
.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.article-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e1e8ed;
}

.article-hero h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.article-intro {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.875rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.article-body h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

/* Inline images */
.inline-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Sections within article */
.story-section,
.insight-section,
.method-section,
.transformation-section,
.trust-section,
.mission-section,
.values-section,
.intro-section,
.contact-intro,
.visit-section,
.process-section {
    margin-bottom: 3rem;
}

/* Method list */
.method-list {
    background-color: #f7fafc;
    padding: 1.5rem 2rem;
    border-left: 4px solid #2980b9;
    margin: 2rem 0;
    list-style: none;
}

.method-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.method-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
}

/* Inline CTA */
.cta-inline {
    background-color: #edf2f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.cta-inline p {
    margin-bottom: 1rem;
}

.cta-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #1a5c8b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(41, 128, 185, 0.3);
}

/* CTA block */
.cta-block {
    background-color: #2980b9;
    color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-block h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
}

.testimonials-container {
    margin: 2rem 0;
}

.testimonial-detailed {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Services grid */
.services-preview,
.services-detailed {
    margin: 3rem 0;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #2980b9;
    background-color: #f0f8ff;
}

.service-card h3 {
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.service-duration {
    font-size: 0.938rem;
    color: #718096;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2980b9;
    margin: 1.5rem 0;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
}

/* Service detailed view */
.service-detailed {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-detailed.featured-service {
    border: 3px solid #2980b9;
    position: relative;
}

.popular-badge-large {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.938rem;
}

.service-image {
    width: 100%;
    height: auto;
}

.service-content {
    padding: 2rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-benefits {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    list-style: none;
}

.service-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-details-box {
    background-color: #edf2f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-details-box p {
    margin-bottom: 0.75rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2980b9;
    margin: 1.5rem 0;
}

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a5c8b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

.btn-primary-large {
    background-color: #2980b9;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.btn-primary-large:hover {
    background-color: #1a5c8b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(41, 128, 185, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #2980b9;
    border: 2px solid #2980b9;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a5c8b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(41, 128, 185, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e8449;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Forms */
.form-section {
    background-color: #f7fafc;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.consultation-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.1);
}

/* Values grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.value-item h3 {
    margin-top: 0;
    color: #2980b9;
}

/* CTA section */
.cta-section,
.final-cta-section {
    text-align: center;
    padding: 3rem 0;
    margin: 3rem 0;
}

/* Disclaimer */
.disclaimer-section {
    background-color: #fff9e6;
    border: 1px solid #f5d76e;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
}

.disclaimer-text {
    font-size: 0.938rem;
    line-height: 1.6;
    color: #5a4a00;
    margin: 0;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.875rem;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 1.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #c0392b;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.5);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.cookie-link {
    color: #3498db;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #5dade2;
}

/* Contact page specific */
.contact-details-section {
    margin: 2rem 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-item h3 {
    color: #2980b9;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-value {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-note {
    background-color: #fff9e6;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #f5d76e;
}

.contact-image-box {
    border-radius: 8px;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: auto;
}

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

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

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

.process-step h3 {
    margin-top: 0;
}

/* FAQ */
.faq-section,
.faq-contact {
    margin: 3rem 0;
}

.faq-item {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2980b9;
}

.faq-item h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
    color: #4a5568;
}

/* Thanks page */
.thanks-page {
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 2rem auto;
}

.thanks-message {
    margin: 2rem 0;
}

.lead-text {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 2px solid #2980b9;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2980b9;
}

.preparation-tips {
    text-align: left;
    margin: 3rem 0;
}

.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.tip-card h3 {
    margin-top: 0;
    color: #27ae60;
}

.email-reminder {
    margin: 2rem 0;
}

.reminder-box {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
}

.reminder-box h3 {
    margin-top: 0;
    color: #856404;
}

.reminder-box p {
    margin: 0;
    color: #856404;
}

.additional-resources {
    text-align: left;
    margin: 3rem 0;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.resource-link {
    display: block;
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.resource-link:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 8px rgba(41, 128, 185, 0.15);
    transform: translateY(-2px);
}

.resource-link h4 {
    margin: 0 0 0.5rem 0;
    color: #2980b9;
}

.resource-link p {
    margin: 0;
    color: #4a5568;
}

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

/* Legal pages */
.legal-page .article-body {
    font-size: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #2980b9;
    margin-top: 1.5rem;
}

.legal-section ul {
    padding-left: 1.5rem;
}

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

.gdpr-purpose,
.gdpr-right,
.cookie-category {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2980b9;
}

.gdpr-purpose h3,
.gdpr-right h3,
.cookie-category h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Tablet styles */
@media (min-width: 768px) {
    .article-hero h1 {
        font-size: 3rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .contact-info-wrapper {
        flex-direction: row;
    }

    .contact-info-box {
        flex: 1;
    }

    .contact-image-box {
        flex: 1;
    }

    .tips-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tip-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .editorial-content {
        padding: 4rem 1.5rem;
    }

    .nav-links {
        gap: 2.5rem;
    }
}

/* Print styles */
@media print {
    .main-nav,
    .sticky-cta,
    .cookie-banner,
    .ad-disclosure {
        display: none;
    }

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