/* 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: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: #1a5a8a;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.nav-links a {
    color: #555;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2980b9;
}

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

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.main-headline {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-headline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.article-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    text-align: center;
}

/* CTA Inline Blocks */
.cta-inline {
    background: #f8f9fa;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #2980b9;
    border-radius: 4px;
}

.cta-inline.secondary {
    background: #fff8e6;
    border-left-color: #f39c12;
}

.cta-text {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
}

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

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

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

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

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

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

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

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    width: 100%;
}

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

/* Highlight Boxes */
.highlight-box {
    background: #ecf8ff;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2980b9;
}

.highlight-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: #fafafa;
    border-left: 5px solid #34495e;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

/* Insight Block */
.insight-block {
    background: #fff3cd;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
    border: 1px solid #ffc107;
}

.insight-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #856404;
}

.insight-block p {
    margin-bottom: 1rem;
    color: #856404;
}

/* Services Preview */
.services-preview {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
}

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

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

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

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

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

.service-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-duration {
    font-size: 0.95rem;
    color: #777;
    margin-top: 1rem;
}

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

.services-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 2rem;
    font-style: italic;
}

/* Forms */
.final-cta {
    background: #f8f9fa;
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.final-cta > p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
    text-align: center;
}

.closing {
    margin-top: 4rem;
    font-style: italic;
    color: #555;
}

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

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

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    background: #1a252f;
    padding: 1.5rem;
    text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Services Page */
.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.page-subtitle {
    font-size: 1.3rem;
    color: #555;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #f39c12;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-tagline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-description {
    margin-bottom: 2rem;
}

.service-description p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

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

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2980b9;
}

.price-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
}

.service-cta {
    display: block;
    margin-top: 1.5rem;
}

.service-form-section {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
    margin-top: 4rem;
}

.form-container {
    max-width: 720px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

/* About Page */
.about-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}

.about-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-lead {
    font-size: 1.4rem;
    color: #555;
}

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.story-block p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.image-block {
    margin: 4rem 0;
}

.story-image {
    width: 100%;
    border-radius: 8px;
}

.cta-block {
    background: #f8f9fa;
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 8px;
    text-align: center;
}

.cta-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-block p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Contact Page */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.contact-container {
    max-width: 720px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

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

.info-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

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

.info-item {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #2980b9;
    font-weight: 600;
}

.info-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
}

/* Thanks Page */
.thanks-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    min-height: 60vh;
}

.thanks-container {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #27ae60;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.next-steps {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #2980b9;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-cta {
    margin-bottom: 3rem;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-reminder {
    background: #fff8e6;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ffc107;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
}

.contact-reminder a {
    color: #2980b9;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

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

.legal-intro {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    padding-top: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #34495e;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.gdpr-table th,
.gdpr-table td,
.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.gdpr-table th,
.cookies-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background: #f8f9fa;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .nav-links {
        gap: 2.5rem;
    }

    .main-headline {
        font-size: 3.5rem;
    }

    .article-lead {
        font-size: 1.5rem;
    }

    .section-headline {
        font-size: 2.2rem;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

    .info-block {
        flex: 1;
        min-width: 300px;
    }

    .thanks-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .editorial-container {
        padding: 4rem 1.5rem;
    }

    .main-headline {
        font-size: 4rem;
    }

    .service-cards {
        gap: 2rem;
    }
}
