* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5d6d7e;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.navigation {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.navigation a {
    color: #34495e;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #2980b9;
}

.ad-label {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.editorial-layout {
    padding: 40px 0;
}

.main-article {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: #ecf0f1;
    font-style: italic;
}

.article-content {
    padding: 0 20px;
}

.intro-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-block h4 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #34495e;
}

.content-block p {
    margin-bottom: 20px;
}

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

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

.caption {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

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

.service-card {
    border: 1px solid #bdc3c7;
    padding: 30px;
    background-color: #f8f9fa;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
}

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

.select-service {
    padding: 12px 30px;
    background-color: #2980b9;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1f618d;
}

.contact-form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #ecf0f1;
}

.contact-form-section h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.btn-submit {
    padding: 14px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.trust-section {
    margin: 60px 0;
}

.testimonial {
    border-left: 4px solid #2980b9;
    padding: 30px;
    background-color: #f8f9fa;
    margin: 40px 0;
    font-style: italic;
}

.testimonial p {
    margin-bottom: 16px;
    font-size: 20px;
}

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

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

.disclaimer-section h4 {
    color: #856404;
    margin-bottom: 16px;
}

.disclaimer-section p {
    color: #856404;
    font-size: 16px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.page-header {
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-header .subtitle {
    font-size: 20px;
    color: #ecf0f1;
}

.services-detailed {
    margin: 40px 0;
}

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

.service-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-layout.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-visual {
    flex: 1;
    min-width: 300px;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 24px 0;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.cta-section {
    background-color: #ecf0f1;
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section .contact-form {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
}

.value-item h4 {
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 22px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.contact-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border: 1px solid #ecf0f1;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-content p {
    margin-bottom: 8px;
    font-size: 16px;
}

.map-section {
    margin: 40px 0;
}

.additional-info {
    margin: 40px 0;
}

.additional-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.additional-info a {
    color: #2980b9;
    text-decoration: underline;
}

.additional-info a:hover {
    color: #1f618d;
}

.thanks-container {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
}

.thanks-content {
    flex: 2;
}

.thanks-sidebar {
    flex: 1;
    min-width: 300px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.service-confirmation {
    background-color: #d5f4e6;
    border: 1px solid #27ae60;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
    text-align: center;
}

.service-confirmation p {
    margin: 0;
    font-size: 18px;
    color: #145a32;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    padding: 16px 0 16px 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    background-color: #2980b9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.additional-info-box {
    background-color: #e8f4f8;
    border: 1px solid #2980b9;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.additional-info-box h3 {
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

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

.btn-primary:hover {
    background-color: #1f618d;
}

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

.btn-secondary:hover {
    background-color: #5d6d7e;
}

.legal-page .article-content {
    max-width: 800px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #34495e;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-content a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f618d;
}

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

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

.cookie-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .lead-text {
        font-size: 20px;
    }

    .content-block h3 {
        font-size: 26px;
    }

    .service-layout {
        flex-direction: column;
    }

    .service-layout.reverse {
        flex-direction: column;
    }

    .thanks-container {
        flex-direction: column;
    }

    .navigation {
        gap: 15px;
    }

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

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

    .values-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
