* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

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

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

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

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

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

.hero-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 60px 40px 40px;
    color: white;
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #ecf0f1;
}

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

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.header-subtitle {
    font-size: 20px;
    color: #7f8c8d;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
}

.article-body section {
    margin-bottom: 60px;
}

.intro-section {
    margin-top: 40px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 300;
}

.article-body h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 40px;
}

.article-body h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 30px;
}

.article-body h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 25px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

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

.insight-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.inline-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 15px 20px;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-inline {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin: 50px 0;
    text-align: center;
}

.cta-inline p {
    margin-bottom: 20px;
    font-size: 20px;
}

.cta-link {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #3498db;
    color: white;
}

.comparison-block {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.comparison-item h3 {
    margin-top: 0;
    color: #2c3e50;
}

.testimonial {
    border-left: 4px solid #3498db;
    padding-left: 30px;
    margin: 30px 0;
    font-style: italic;
}

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

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 14px;
    color: #7f8c8d;
}

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

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-top: 0;
    font-size: 26px;
}

.service-content ul {
    margin: 20px 0;
}

.service-duration {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

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

.select-service {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
}

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

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

.contact-form {
    margin-top: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    border-radius: 4px;
    margin: 50px 0;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: #856404;
}

.disclaimer-section p {
    color: #856404;
    margin-bottom: 0;
}

.value-block,
.faq-item {
    margin-bottom: 35px;
}

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

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.thanks-section {
    text-align: center;
    padding: 60px 20px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #27ae60;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-button.secondary {
    background-color: #95a5a6;
}

.cta-button.secondary:hover {
    background-color: #7f8c8d;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 25px;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

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

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

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .article-body h2 {
        font-size: 28px;
    }

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

    .article-body {
        font-size: 16px;
    }

    .comparison-block {
        flex-direction: column;
    }

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

    .thanks-content h1 {
        font-size: 36px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}