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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

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

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

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

.btn-cookie.reject:hover {
    background-color: #6c7a7b;
}

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

.header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #34495e;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

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

.hero-section {
    padding: 32px 0 40px;
}

.main-heading {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    font-weight: 400;
}

.text-section {
    padding: 32px 0;
}

.text-section h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.text-section h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 12px;
    margin-top: 24px;
}

.text-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 16px;
}

.text-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.text-section li {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 8px;
}

.inline-image {
    margin: 40px 0;
    background-color: #f5f7f9;
}

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

.cta-inline {
    padding: 32px 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.services-section {
    padding: 40px 0;
}

.services-section h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.services-section > p {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 32px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    padding: 28px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    background-color: #fafbfc;
}

.service-item h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 12px;
}

.service-price {
    font-size: 24px;
    color: #27ae60;
    font-weight: 700;
    margin-top: 16px;
}

.form-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    margin: 40px -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.form-section h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.form-section > p {
    font-size: 17px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 28px;
}

.contact-form {
    max-width: 540px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    padding: 32px 0;
    margin: 32px 0;
    border-top: 1px solid #e0e6ed;
    border-bottom: 1px solid #e0e6ed;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 24px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 48px 0 24px;
    margin-top: 64px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

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

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

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

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 767px) {
    .main-heading {
        font-size: 32px;
    }

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

    .text-section h2 {
        font-size: 24px;
    }

    .text-section h3 {
        font-size: 20px;
    }

    .service-item {
        padding: 20px;
    }

    .form-section {
        margin-left: -24px;
        margin-right: -24px;
    }
}