* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid #ffeaa7;
}

.hero-editorial {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.intro-section {
    padding: 60px 0;
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.image-break {
    margin: 60px 0;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e0e0e0;
}

.story-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.inline-cta {
    margin-top: 40px;
    text-align: center;
}

.btn-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #4a5568;
}

.service-card-editorial {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.service-card-editorial h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a5568;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-select-service.selected {
    background-color: #1e8449;
}

.testimonials-section {
    padding: 60px 0;
}

.testimonials-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #95a5a6;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.approach-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.form-section {
    padding: 80px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section > .container-narrow > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border: 1px solid #ffeaa7;
    display: none;
}

.form-notice.visible {
    display: block;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.final-cta {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 48px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-service {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-service strong {
    color: #2c3e50;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page p,
.legal-page ul {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
}

.contact-page {
    padding: 60px 0;
}

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

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

    .hero-editorial h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .services-preview h2,
    .final-cta h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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