* {
    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 {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

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

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

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

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

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

.brand-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

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

.hero-article,
.services-article,
.about-article,
.contact-article,
.thanks-article,
.legal-article {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.article-meta {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.5;
}

.inline-image {
    margin: 40px 0;
    width: 100%;
}

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

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

.intro-text {
    font-size: 21px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.article-content h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 25px;
}

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

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

.cta-inline {
    background-color: #f8f9fa;
    padding: 35px;
    margin: 45px 0;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.cta-inline p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1a252f;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.testimonial-inline p {
    font-size: 19px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.disclaimer-box {
    background-color: #fff9e6;
    border: 1px solid #f1c40f;
    padding: 25px;
    margin: 45px 0;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #856404;
}

.services-preview {
    background-color: #f8f9fa;
    padding: 70px 20px;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.narrow-content > p {
    font-size: 18px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 50px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

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

.service-card p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.final-cta {
    text-align: center;
    padding: 40px 0;
}

.final-cta h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.service-detailed {
    margin-bottom: 60px;
}

.service-detailed h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.consultation-form-section {
    background-color: #f8f9fa;
    padding: 70px 20px;
}

.consultation-form-section h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.consultation-form-section > .narrow-content > p {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-section h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 15px;
}

.email-display {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.confirmation-box {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.confirmation-box h2 {
    font-size: 26px;
    color: #155724;
    margin-top: 0;
    margin-bottom: 15px;
}

.confirmation-box p {
    font-size: 17px;
    color: #155724;
    margin-bottom: 15px;
}

.service-confirmation {
    font-weight: 600;
    font-size: 18px;
}

.preparation-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
}

.preparation-list li {
    margin-bottom: 12px;
    font-size: 17px;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 4px;
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 15px;
}

.next-steps p {
    margin-bottom: 25px;
}

.next-steps-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.final-note {
    background-color: #e3f2fd;
    padding: 25px;
    border-radius: 4px;
    margin-top: 40px;
}

.final-note p {
    font-size: 17px;
    color: #0d47a1;
    margin-bottom: 0;
}

.legal-content {
    font-size: 16px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dcdcdc;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 50px 20px 20px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

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

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .ad-notice {
        width: 100%;
    }

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

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

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

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

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .next-steps-links {
        flex-direction: column;
    }

    .service-form {
        padding: 25px;
    }
}