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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

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

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

.article-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

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

.article-section h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a252f;
}

.article-section h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
    color: #2c3e50;
}

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

.article-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-section ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #374151;
}

.article-image {
    margin: 50px 0;
    background-color: #f3f4f6;
}

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

.article-image-small {
    margin: 40px 0;
    background-color: #f3f4f6;
}

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

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

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

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

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

.service-card {
    border: 1px solid #e1e8ed;
    padding: 30px;
    border-radius: 8px;
    background-color: #fafbfc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a252f;
}

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

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

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

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

.testimonial-block {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #3498db;
}

.testimonial-block blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #6c757d;
}

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

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #4b5563;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.disclaimer {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.site-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.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;
}

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

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.legal-page .article-section ul {
    margin: 20px 0 20px 30px;
}

.legal-page .article-section ul li {
    margin-bottom: 12px;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

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

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

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

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

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