* {
    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;
}

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #5a6c7d;
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-hero {
    margin-bottom: 48px;
}

.hero-image-wrapper {
    margin-bottom: 32px;
    background-color: #f0f2f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.article-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
}

.page-header {
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.page-intro {
    font-size: 18px;
    color: #6c757d;
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.article-section h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.article-section ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-section li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.inline-image {
    margin: 40px 0;
    background-color: #f0f2f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.highlighted {
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 4px;
    margin: 48px 0;
}

.testimonial-inline {
    background-color: #ffffff;
    border-left: 4px solid #2c3e50;
    padding: 24px 28px;
    margin: 32px 0;
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 32px;
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #f0f2f5;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 0;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-select-btn {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

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

.cta-section {
    text-align: center;
    padding: 48px 0;
}

.cta-link {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s;
    margin: 8px;
}

.cta-link:hover {
    background-color: #1a2633;
}

.form-container {
    background-color: #f8f9fa;
    padding: 40px 32px;
    border-radius: 4px;
    margin: 48px 0;
}

.form-container.hidden {
    display: none;
}

.editorial-form h2 {
    font-size: 26px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.selected-service-display {
    background-color: #ffffff;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 500;
    color: #2c3e50;
}

.editorial-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c3e50;
}

.editorial-form input,
.editorial-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: inherit;
}

.editorial-form input:focus,
.editorial-form textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.submit-btn {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 4px;
    margin: 48px 0;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

.contact-info {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 32px;
    margin: 32px 0;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
}

.contact-info h3:first-child {
    margin-top: 0;
}

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

.thanks-container {
    text-align: center;
    padding: 60px 0;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin: 32px 0;
    font-size: 17px;
    font-weight: 500;
    color: #2c3e50;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

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

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

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b8b8b8;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8b8b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1a2633;
}

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

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

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

    .nav-links {
        gap: 20px;
    }

    .article-title {
        font-size: 32px;
    }

    .article-intro {
        font-size: 18px;
    }

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

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

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

    .cookie-btn {
        width: 100%;
    }
}