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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
    background-color: #ffffff;
}

.editorial-header {
    margin-bottom: 50px;
    text-align: center;
}

.editorial-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.header-intro {
    font-size: 20px;
    color: #5a5a5a;
    line-height: 1.6;
    font-style: italic;
}

.editorial-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

.editorial-image-inline {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

.editorial-text {
    margin: 40px 0;
}

.editorial-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.editorial-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
    color: #2a2a2a;
}

.editorial-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.editorial-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.editorial-text ul li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.editorial-text a {
    color: #0066cc;
    text-decoration: underline;
}

.editorial-text a:hover {
    color: #004499;
}

.inline-cta {
    text-align: center;
    margin: 50px 0;
    padding: 30px 0;
}

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.services-editorial {
    margin: 50px 0;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-includes {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-includes li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.service-includes li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-price {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-select {
    padding: 12px 30px;
    background-color: #f0f0f0;
    border: 1px solid #d0d0d0;
    color: #1a1a1a;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #e0e0e0;
    border-color: #b0b0b0;
}

.service-select.selected {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.form-section {
    margin: 60px 0;
    padding: 40px 0;
}

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

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-submit {
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: #333333;
}

.disclaimer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.editorial-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a1a1a;
}

.footer-info {
    font-size: 14px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.footer-info p {
    margin-bottom: 5px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

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

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

.legal-page .editorial-text {
    font-size: 16px;
}

.legal-page .editorial-text h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-page .editorial-text h3 {
    font-size: 22px;
}

.legal-page .editorial-text p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .editorial-container {
        padding: 40px 20px;
    }

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

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

    .editorial-text h2 {
        font-size: 26px;
    }

    .editorial-text h3 {
        font-size: 20px;
    }

    .editorial-text p {
        font-size: 16px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-price {
        font-size: 22px;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}