* {
    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 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    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: 1px solid #ffffff;
}

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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.story-flow {
    font-size: 1.1rem;
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

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

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

.inline-image {
    margin: 3rem 0;
    width: 100%;
}

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

.story-section {
    margin-bottom: 3.5rem;
}

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

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

.story-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.story-section p {
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

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

.story-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.highlight-block {
    background-color: #f8f9fa;
    padding: 2rem 2.5rem;
    border-left: 4px solid #3498db;
    margin: 3rem 0;
    border-radius: 4px;
}

.inline-cta {
    margin: 2rem 0;
}

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

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

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background-color: #fafafa;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #444;
    border: none;
}

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

.final-cta-block {
    margin-top: 4rem;
    padding: 3rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
}

.final-cta-block h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.final-cta-block p {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.age-block {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #3498db;
}

.age-block h4 {
    margin-top: 0;
    color: #2c3e50;
}

.benefits-list,
.philosophy-list {
    list-style-type: none;
    padding-left: 0;
}

.benefits-list li,
.philosophy-list li {
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li:before,
.philosophy-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
}

.service-content h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    margin-top: 0;
}

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

.service-details {
    margin: 1.5rem 0;
}

.service-details h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

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

.btn-select {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-section {
    margin: 4rem 0;
    padding: 3rem 2.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.form-section h2 {
    margin-bottom: 1rem;
}

.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 textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    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 textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.contact-info {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

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

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

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.step-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    margin-top: 0;
}

.contact-quick {
    margin: 1.5rem 0;
}

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

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

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

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

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

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

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

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

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

    .editorial-container {
        padding: 2rem 1.5rem 3rem;
    }

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

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

    .story-section h2 {
        font-size: 1.7rem;
    }

    .story-flow {
        font-size: 1.05rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

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

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

    .age-groups {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }

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

    .story-section h2 {
        font-size: 1.5rem;
    }

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

    .service-block {
        padding: 1.5rem;
    }

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