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

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

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

a:hover {
    color: #229954;
    text-decoration: underline;
}

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

li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

strong {
    font-weight: 700;
}

blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    text-align: center;
}

.cookie-content a {
    color: #2ecc71;
}

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

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

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

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

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

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

/* Navigation */
.nav-minimal {
    background-color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #2c3e50;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #27ae60;
    text-decoration: none;
}

/* Editorial Container */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
}

.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Editorial */
.hero-editorial {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Intro Text */
.intro-text {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* Inline Images */
.inline-image {
    margin: 3rem 0;
}

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

figcaption {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: #7f8c8d;
    text-align: center;
    font-style: italic;
}

/* Testimonial Blocks */
.testimonial-block {
    border-left-color: #3498db;
    background-color: #ecf0f1;
}

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

/* Stats Section */
.stats-section {
    margin: 3rem 0;
    padding: 2.5rem 0;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
}

/* Benefit List */
.benefit-list {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.benefit-list li {
    font-size: 1.125rem;
    color: #2c3e50;
}

/* CTA Elements */
.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-text {
    font-size: 1.125rem;
    color: #27ae60;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: #229954;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #fff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #229954;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
}

/* Services Editorial */
.services-editorial {
    margin: 3rem 0;
}

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

.service-card.featured {
    background-color: #e8f8f0;
    border: 2px solid #27ae60;
}

.service-card .badge {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    background-color: #27ae60;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.service-card h2,
.service-card h3 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: #1a1a1a;
}

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

.service-image {
    margin: 2rem 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.service-features {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.75rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    margin: 1.5rem 0 0.5rem;
}

.price-note {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: #fff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.process-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.process-steps li {
    font-size: 1.0625rem;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    text-align: center;
}

.cta-section h2,
.cta-section h3 {
    color: #1a1a1a;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Contact Form Editorial */
.contact-form-editorial {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-form-editorial h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background-color: #27ae60;
    color: #fff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Final CTA */
.final-cta {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.final-cta h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta p {
    color: #fff;
    margin-bottom: 2rem;
}

.final-cta a {
    color: #fff;
    text-decoration: underline;
}

.final-cta .btn-primary-large {
    background-color: #fff;
    color: #27ae60;
}

.final-cta .btn-primary-large:hover {
    background-color: #ecf0f1;
    color: #229954;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-text {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.btn-sticky {
    padding: 0.75rem 1.5rem;
    background-color: #27ae60;
    color: #fff;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #229954;
    text-decoration: none;
}

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
}

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

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

.contact-address {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Thanks Page */
.thanks-page .content-narrow {
    padding-top: 2rem;
}

.thanks-hero {
    text-align: center;
    margin-bottom: 3rem;
}

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: #7f8c8d;
    font-style: italic;
}

.timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.timeline-text {
    flex: 1;
}

.timeline-text h3 {
    margin-top: 0;
}

.tips-box {
    background-color: #e8f8f0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin: 3rem 0;
}

.action-list {
    padding-left: 1.5rem;
}

.contact-options {
    list-style: none;
    padding-left: 0;
}

.social-proof {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.final-message {
    text-align: center;
    margin: 4rem 0 2rem;
}

.signature {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1rem;
}

/* Legal Pages */
.legal-page h2 {
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.5rem;
}

.legal-page h3 {
    color: #2c3e50;
}

.legal-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin: 2rem 0;
}

.contact-box {
    background-color: #e8f8f0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin: 3rem 0;
}

.rights-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.process-box ol {
    background-color: #fff;
    padding: 2rem;
    border-radius: 4px;
}

.authority-box {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.data-categories {
    margin: 2rem 0;
}

.data-categories h3 {
    margin-top: 2rem;
}

.cookie-types {
    margin: 2rem 0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table code {
    background-color: #ecf0f1;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.875rem;
}

.purpose-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.browser-instructions {
    margin: 2rem 0;
}

.browser-instructions h4 {
    margin-top: 2rem;
    color: #2c3e50;
}

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

.faq-compact {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.125rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Decision Helper */
.decision-helper {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

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

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

.helper-card h3 {
    margin-top: 0;
    font-size: 1.125rem;
}

.helper-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Team & Other Sections */
.team-intro p {
    margin-bottom: 1rem;
}

.principle-list,
.learning-list {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.directions {
    margin: 2rem 0;
}

.directions h3 {
    margin-top: 2rem;
}

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

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

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

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

.footer-section p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: #ecf0f1;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2ecc71;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    h3 {
        font-size: 1.375rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

    .hero-editorial {
        padding: 2rem 1.5rem 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .content-narrow {
        padding: 2rem 1.5rem;
    }

    .stats-section {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

    .contact-form-editorial {
        padding: 1.5rem;
    }

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

    .final-cta {
        padding: 2rem 1.5rem;
    }

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .btn-sticky {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .timeline-item {
        flex-direction: column;
    }

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

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

@media (min-width: 769px) {
    .stats-section {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .helper-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .helper-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }
}