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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    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;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a6c7d;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #3498db;
}

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

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

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

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

.article-image {
    margin: 56px 0;
    background-color: #e9ecef;
}

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

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.content-block h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #34495e;
    font-weight: 600;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #4a5568;
}

.content-block ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-block li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #4a5568;
}

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

.cta-link {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

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

.highlight-section {
    background-color: #f8f9fa;
    padding: 48px 32px;
    margin: 56px -32px;
    border-radius: 8px;
}

.services-inline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.service-item {
    padding: 28px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 0;
    color: #2c3e50;
}

.service-item p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin: 16px 0;
}

.select-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.testimonial {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 12px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
}

.form-section {
    margin-top: 64px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

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

.disclaimer-section {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 2px solid #e9ecef;
}

.disclaimer {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 56px 24px 32px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #4a5568;
}

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

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.service-detail {
    padding: 32px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.contact-info {
    margin-top: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    color: #5a6c7d;
}

.legal-page .content-block {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 32px;
}

.legal-page h3 {
    font-size: 20px;
}

.legal-page ul {
    margin-top: 16px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

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

.thanks-content {
    margin-top: 48px;
}

.thanks-service-info {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin: 32px 0;
}

.thanks-service-info p {
    font-size: 18px;
    margin: 0;
}

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

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

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

    .content-block p,
    .content-block li {
        font-size: 17px;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .highlight-section {
        margin-left: -24px;
        margin-right: -24px;
        padding: 32px 24px;
    }
}