:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #3498db;
    --success-color: #27ae60;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background-color: var(--secondary-color);
    color: white;
}

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

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-editorial {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
    white-space: nowrap;
}

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

.hero-editorial {
    margin: 40px 0 60px 0;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.hero-text-narrow {
    text-align: left;
}

.hero-text-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-large {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 0;
}

.intro-medium {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

.intro-small {
    font-size: 16px;
    color: var(--text-light);
}

.page-header-narrow {
    margin: 40px 0 60px 0;
}

.page-header-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.content-narrow {
    margin-bottom: 80px;
}

.content-narrow h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.content-narrow h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 20px;
}

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-narrow li {
    margin-bottom: 10px;
}

.content-list {
    list-style-type: none;
    padding-left: 0;
}

.content-list li {
    padding-left: 30px;
    position: relative;
}

.content-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.image-inline {
    margin: 40px 0;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.btn-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    color: var(--text-light);
    font-size: 20px;
    line-height: 1.6;
}

.cta-section-inline {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.cta-section-inline h4 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 28px;
}

.cta-section-inline p {
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.disclaimer-box {
    margin: 40px 0;
    padding: 24px;
    background-color: #fff9e6;
    border: 1px solid #f39c12;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
}

.disclaimer-box p {
    margin-bottom: 0;
}

.final-cta {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.final-cta h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 32px;
    color: white;
}

.final-cta p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.service-card {
    margin: 50px 0;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 26px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 16px;
}

.service-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-content li {
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: none;
}

.form-section.show {
    display: block;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.info-box {
    margin: 40px 0;
    padding: 30px;
    background-color: #e8f4f8;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.info-box p {
    margin-bottom: 16px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-block {
    margin: 40px 0;
}

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

.contact-detail h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.contact-detail p {
    margin-bottom: 0;
    color: var(--text-light);
}

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

.thanks-header {
    margin-bottom: 50px;
}

.thanks-header h1 {
    margin-bottom: 20px;
}

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: left;
}

.thanks-steps {
    list-style-position: inside;
    text-align: left;
}

.thanks-steps li {
    margin-bottom: 16px;
}

.thanks-links {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
}

.thanks-links li {
    margin-bottom: 12px;
}

.thanks-links a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-links a:hover {
    text-decoration: underline;
}

.thanks-footer {
    margin-top: 50px;
}

.thanks-footer p {
    margin-bottom: 24px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.footer-editorial {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 20px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

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

    .intro-large {
        font-size: 20px;
    }

    .page-header-narrow h1 {
        font-size: 32px;
    }

    .content-narrow h2 {
        font-size: 26px;
    }

    .content-narrow h3 {
        font-size: 20px;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cta-section-inline {
        padding: 30px 20px;
    }

    .final-cta {
        padding: 40px 24px;
    }

    .service-content {
        padding: 24px;
    }

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