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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #1a3d52;
    --accent-color: #e87d3e;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4a9d6f;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.ad-disclosure {
    background-color: var(--light-bg);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid var(--border-color);
}

.header-main {
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.editorial-flow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.hero-editorial {
    margin-bottom: 3rem;
}

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

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

.article-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.content-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
}

.content-narrow p {
    margin-bottom: 1.5rem;
}

.content-narrow h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.image-break {
    max-width: 900px;
    margin: 4rem auto;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.inline-cta-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-inline:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.highlight-box {
    background-color: #f0f7fb;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

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

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-card-inline {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card-inline:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.service-card-inline h2,
.service-card-inline h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 1rem 0;
}

.select-service-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.select-service-link:hover {
    background-color: #d66d2e;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-field input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--success-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #3d8459;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #f0e5b8;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 3rem 0;
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background-color: var(--success-color);
    color: var(--white);
}

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

.btn-reject {
    background-color: #666;
    color: var(--white);
}

.btn-reject:hover {
    background-color: #555;
}

.contact-info-box {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.thanks-header {
    margin-top: 3rem;
}

.thanks-box {
    background-color: #e6f7ed;
    border-left: 4px solid var(--success-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.footer-main {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
    margin-top: 5rem;
}

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

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

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

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

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

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

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.legal-page .content-narrow {
    max-width: 800px;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

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

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

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

    .nav-links {
        gap: 1rem;
        font-size: 15px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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