* {
    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: 9999;
    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;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

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

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

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e1e8ed;
    border-radius: 3px;
}

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

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

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

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

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

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

.hero-image {
    margin: 50px 0;
    width: 100%;
}

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

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

.article-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.article-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

.inline-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.testimonial-block blockquote {
    font-style: italic;
}

.testimonial-block p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 15px;
}

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

.services-editorial {
    margin-top: 40px;
}

.service-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e1e8ed;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-item p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.service-item .price {
    font-size: 22px;
    color: #27ae60;
    font-weight: 700;
    margin-top: 15px;
}

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

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

.form-section > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

.contact-form {
    max-width: 100%;
}

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

.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 15px;
    border: 1px solid #cbd5e0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
}

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

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

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

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

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

.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: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #2980b9;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container ul,
.page-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info .email {
    color: #2c3e50;
    font-weight: 600;
    pointer-events: none;
}

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

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

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

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

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

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

    .testimonial-block {
        padding: 25px;
    }

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

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

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