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

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

.ad-notice {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

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

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

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

.subtitle {
    font-size: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.content-body {
    font-size: 18px;
    color: #333;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.content-body p {
    margin-bottom: 25px;
}

.content-body h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.content-body h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2a2a2a;
    font-weight: 600;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.highlighted-section {
    background-color: #f5f5f5;
    padding: 35px 40px;
    margin: 45px 0;
    border-left: 4px solid #1a1a1a;
}

.highlighted-section h2,
.highlighted-section h3 {
    margin-top: 0;
    font-size: 26px;
}

.highlighted-section p {
    margin-bottom: 0;
}

.highlighted-section p:last-child {
    margin-bottom: 0;
}

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

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

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

.services-preview {
    margin: 60px 0;
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.services-preview h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

.services-preview > p {
    text-align: center;
    margin-bottom: 45px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 35px;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer {
    margin: 50px 0;
    padding: 30px;
    background-color: #fef9f5;
    border: 1px solid #e8d7c3;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.7;
}

.disclaimer p {
    margin-bottom: 0;
}

.disclaimer strong {
    font-weight: 600;
}

.service-detail {
    margin: 50px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail h2 {
    margin-top: 0;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 35px 0;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.contact-note {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 25px 0;
    border-left: 3px solid #666;
    font-size: 16px;
}

.location-info {
    margin: 50px 0;
}

.privacy-note {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.privacy-note h3 {
    margin-top: 0;
}

.privacy-note a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-page .content-body {
    font-size: 16px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.last-updated {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 35px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.service-confirmation {
    margin: 45px 0;
    padding: 30px;
    background-color: #f0f8f0;
    border-radius: 4px;
}

.service-confirmation h2 {
    margin-top: 0;
    font-size: 20px;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.step {
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.step h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.step p {
    margin-bottom: 0;
    font-size: 16px;
}

.additional-info {
    margin: 50px 0;
    text-align: left;
}

.cta-section {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #333;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-section p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a9d5f;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #666;
    color: #ffffff;
}

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

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

    .subtitle {
        font-size: 18px;
    }

    .content-body {
        font-size: 17px;
    }

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

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

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .editorial-content {
        margin: 40px auto;
        padding: 0 20px;
    }

    .form-section {
        padding: 35px 25px;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

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