/* 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;
}

/* 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;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

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

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

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

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

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

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

/* Navigation */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

/* Editorial Container - Main Layout Archetype */
.editorial-container {
    max-width: 100%;
    width: 100%;
}

.hero-editorial {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 5% 3rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.6;
    font-weight: 400;
}

.thanks-hero {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

/* Content Narrow - Editorial Style */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.content-narrow h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2.5rem 0 1.2rem;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin: 2rem 0 1rem;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.content-narrow ul,
.content-narrow ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.content-narrow li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #4a5568;
}

.section-alt {
    background-color: #f8f9fa;
    padding: 3rem 5%;
    margin-left: -5%;
    margin-right: -5%;
    width: calc(100% + 10%);
}

/* Images - Inline Editorial Style */
.inline-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    display: block;
}

/* Services Preview Cards */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

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

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-card p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0 1.5rem;
}

/* CTAs - Inline Editorial Style */
.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
}

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

/* Testimonials */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 3rem 5%;
    margin: 3rem -5%;
    width: calc(100% + 10%);
}

.testimonial-section blockquote {
    border-left: 4px solid #3498db;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
}

.testimonial-section blockquote p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

/* Form Section */
.form-section {
    max-width: 680px;
    margin: 4rem auto;
    padding: 3rem 5%;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #dfe4ea;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 5%;
}

.service-detail {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
}

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

.service-info h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-audience {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-info ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.service-info li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

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

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

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

/* Legal Content */
.legal-content .content-narrow {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.8rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

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

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

.thanks-list {
    list-style-type: disc;
    margin-left: 2rem;
}

/* Final Section */
.final-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3.5rem;
    }

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

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

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

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

    .service-image {
        flex: 1;
        max-width: 50%;
    }

    .service-info {
        flex: 1;
    }

    .services-preview {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .content-narrow h2 {
        font-size: 1.7rem;
    }

    .content-narrow p {
        font-size: 1rem;
    }

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