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

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    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: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-weight: 500;
}

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

.editorial-layout {
    background-color: #ffffff;
    min-height: 70vh;
}

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

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

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

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

.article-image {
    width: 100%;
    margin-bottom: 50px;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

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

.intro-text {
    font-size: 21px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 28px;
}

.article-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #444;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 48px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

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

.article-image-inline {
    margin: 40px 0;
}

.article-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.cta-button.secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.rule-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 4px solid #3498db;
}

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

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

.testimonial-section blockquote {
    margin-bottom: 30px;
    padding-left: 24px;
    border-left: 4px solid #3498db;
}

.testimonial-section blockquote p {
    font-size: 19px;
    font-style: italic;
    color: #555;
    margin-bottom: 12px;
}

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

.services-preview {
    margin: 60px 0;
}

.section-intro {
    font-size: 19px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.contact-form {
    max-width: 100%;
    margin-top: 30px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff8dc;
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #f39c12;
    margin: 50px 0;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.services-detailed {
    margin-top: 50px;
}

.service-detailed {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

.service-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-content {
    flex: 1;
    min-width: 0;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 0;
}

.contact-info-section {
    display: flex;
    gap: 50px;
    margin: 50px 0;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h2 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
}

.email-display {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
}

.small-note {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.thanks-section {
    margin: 50px 0;
}

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

.service-confirmation {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    padding: 20px;
    margin: 30px 0;
}

.service-highlight {
    font-size: 18px;
    color: #155724;
    margin-bottom: 0;
}

.thanks-image {
    margin: 40px 0;
}

.thanks-image img {
    width: 100%;
    border-radius: 8px;
}

.steps-list {
    padding-left: 28px;
    margin: 24px 0;
}

.steps-list li {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.cta-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h3 {
    font-size: 26px;
    margin-bottom: 16px;
    margin-top: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 24px;
}

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

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 12px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0;
    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: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
}

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

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

    .content-article {
        padding: 40px 20px 60px;
    }

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

    .subtitle {
        font-size: 18px;
    }

    .article-section h2 {
        font-size: 26px;
    }

    .article-section h3 {
        font-size: 20px;
    }

    .intro-text {
        font-size: 19px;
    }

    .article-section p {
        font-size: 17px;
    }

    .service-detailed {
        flex-direction: column;
        gap: 30px;
    }

    .service-detailed:nth-child(even) {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .highlight-section,
    .form-section,
    .testimonial-section {
        padding: 30px 20px;
    }
}