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

.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;
    font-size: 14px;
}

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

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

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

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

.nav-ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.main-article {
    background-color: #ffffff;
}

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

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

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

.article-image {
    margin: 40px 0;
    background-color: #f5f7fa;
    border-radius: 4px;
    overflow: hidden;
}

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

.inline-image {
    margin: 30px 0;
    background-color: #f5f7fa;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.article-body h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 600;
}

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

.article-body ul,
.article-body ol {
    margin: 20px 0 24px 30px;
}

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

.cta-inline {
    background-color: #eef6fc;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.cta-inline p {
    margin-bottom: 15px;
}

.btn-text {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s, border-color 0.3s;
}

.btn-text:hover {
    color: #2980b9;
    border-color: #2980b9;
}

.testimonial-box {
    background-color: #f8f9fa;
    padding: 35px;
    margin: 40px 0;
    border-radius: 4px;
    font-style: italic;
}

.testimonial-box p {
    font-size: 19px;
    margin-bottom: 15px;
}

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

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

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

.contact-form-section h3 {
    margin-top: 0;
}

.service-form {
    margin-top: 25px;
}

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

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

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

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.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;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

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

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

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

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

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

.service-detail {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-image {
    margin: 25px 0;
    background-color: #f5f7fa;
    border-radius: 4px;
    overflow: hidden;
}

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

.cta-section {
    background-color: #eef6fc;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
    border-radius: 4px;
}

.cta-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

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

.contact-block {
    margin-bottom: 30px;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 4px;
    margin-top: 30px;
}

.contact-note a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

.thanks-message {
    background-color: #d4edda;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
    border-left: 4px solid #28a745;
}

.thanks-message a {
    color: #3498db;
    text-decoration: underline;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.next-steps h2 {
    text-align: center;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

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

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

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