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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Editorial Container - Main Layout Archetype */
.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-article {
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    margin-bottom: 2.5rem;
    background-color: #ecf0f1;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    padding: 0 1rem;
}

.article-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.article-content .lead {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

.article-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section.bg-light {
    background-color: #f8f9fa;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 3rem 2rem;
}

/* Inline Images */
.inline-image {
    margin: 2.5rem 0;
    background-color: #ecf0f1;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blockquote */
blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: #34495e;
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    margin: 2.5rem 0;
}

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

.cta-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.3rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-link:hover {
    color: #2980b9;
    border-color: #2980b9;
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
}

.service-image {
    margin-bottom: 1.5rem;
    background-color: #ecf0f1;
}

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

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

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

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

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

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

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

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

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

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

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

/* Contact Form */
.contact-form-section {
    margin: 2.5rem 0;
    background-color: #f8f9fa;
    padding: 2.5rem;
}

.contact-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #bdc3c7;
    background-color: #ffffff;
    font-family: inherit;
}

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

/* Disclaimer */
.disclaimer-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

/* Principle List */
.principle-list {
    margin: 2rem 0;
}

.principle {
    margin-bottom: 2.5rem;
}

.principle h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.principle p {
    font-size: 1.05rem;
    color: #34495e;
}

/* Contact Info */
.contact-info {
    margin: 2rem 0;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.6;
}

/* FAQ */
.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item p {
    font-size: 1.05rem;
    color: #34495e;
}

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

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

.step {
    margin-bottom: 2.5rem;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1.05rem;
    color: #34495e;
}

.tips-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.tips-list li {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

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

.legal-content p,
.legal-content ul {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    padding-left: 2rem;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-info p {
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

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

    .article-content h1 {
        font-size: 2rem;
    }

    .article-content .lead {
        font-size: 1.15rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .content-section.bg-light {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 2rem 1rem;
    }

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

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