/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c3e50;
}

/* Editorial Main Layout */
.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.editorial-hero {
    margin-bottom: 3rem;
}

.editorial-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subline {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Editorial Body */
.editorial-intro {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.65;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.editorial-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

.editorial-body h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.editorial-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.editorial-body li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

/* Quote Sections */
.editorial-quote {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 3px solid #ecf0f1;
    border-bottom: 3px solid #ecf0f1;
}

.editorial-quote blockquote,
.inline-quote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid #3498db;
}

.editorial-quote cite,
.inline-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #7f8c8d;
}

/* Insight Boxes */
.insight-box {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    border-left: 5px solid #3498db;
}

.insight-box h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
}

.insight-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.approach-box {
    background-color: #ecf8f3;
    padding: 1.8rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    border-left: 5px solid #27ae60;
}

.approach-box h3 {
    font-size: 1.2rem;
    color: #27ae60;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.approach-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.warning-box {
    background-color: #fff3e0;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 6px;
    border-left: 5px solid #e67e22;
}

.warning-box p {
    margin-bottom: 0;
}

.stats-highlight {
    background-color: #e8f4fd;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 6px;
    text-align: center;
}

.stats-highlight p {
    margin-bottom: 0;
    font-size: 1.15rem;
}

/* Lever Sections */
.lever-section {
    margin: 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #ecf0f1;
}

.lever-section h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Testimonial Block */
.testimonial-block {
    background-color: #f8f9fa;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.testimonial-block p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-style: normal;
    color: #7f8c8d;
}

/* CTAs */
.cta-inline,
.cta-inline-alt {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 2rem 0;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-inline-alt {
    background-color: #27ae60;
}

.cta-inline-alt:hover {
    background-color: #229954;
}

.cta-block {
    display: block;
    text-align: center;
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-block:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    margin: 2rem 0;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Services Section */
.services-reveal {
    margin: 4rem 0;
}

.services-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    border: 2px solid #ecf0f1;
    position: relative;
}

.service-card.featured {
    border-color: #3498db;
    background-color: #f0f8ff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background-color: #3498db;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.2rem;
}

.service-includes {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 1.5rem;
    font-style: italic;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1.5rem;
}

/* Forms */
.form-section {
    margin: 4rem 0;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Final Thought Section */
.final-thought {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.final-thought h2 {
    margin-top: 0;
}

/* About Page Specific */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.subline {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.principle-card {
    background-color: #f0f8ff;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.principle-card h3 {
    color: #3498db;
    margin-top: 0;
}

.stats-box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ecf8f3;
    border-radius: 8px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    display: block;
}

/* Services Page Specific */
.services-list {
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured {
    border-color: #3498db;
}

.service-detail-card.premium {
    border-color: #e67e22;
}

.badge-featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #3498db;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    padding: 2.5rem;
    background-color: #f8f9fa;
}

.service-tagline {
    font-size: 1.05rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.service-body {
    padding: 2.5rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.service-body h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.service-outcome {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #27ae60;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-left: 1rem;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Services FAQ */
.services-faq {
    margin: 4rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

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

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

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

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

.info-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.info-item a {
    color: #3498db;
    text-decoration: none;
}

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

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-text h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.contact-text li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-info ol {
    padding-left: 1.5rem;
}

.thanks-info li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.selected-service-info {
    background-color: #e8f4fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.05rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #f0f8ff;
}

.thanks-note {
    background-color: #fff3e0;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 3rem;
    font-size: 0.95rem;
}

.thanks-note a {
    color: #3498db;
    text-decoration: none;
}

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

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-column li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

/* Criteria List */
.criteria-list {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.criteria-list li {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .editorial-main {
        padding: 2rem 1.5rem;
    }

    .editorial-hero h1 {
        font-size: 2rem;
    }

    .hero-subline {
        font-size: 1.1rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .editorial-body h2 {
        font-size: 1.7rem;
    }

    .editorial-body p {
        font-size: 1.05rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-card,
    .service-detail-card {
        padding: 1.5rem;
    }

    .service-header,
    .service-body {
        padding: 1.5rem;
    }

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

    .stats-box {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info-section {
        gap: 2rem;
    }

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

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

@media (max-width: 480px) {
    .editorial-hero h1 {
        font-size: 1.7rem;
    }

    .hero-subline {
        font-size: 1rem;
    }

    .editorial-body h2 {
        font-size: 1.5rem;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}