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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.editorial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.article-hero {
    margin-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

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

.text-column {
    max-width: 680px;
    margin: 0 auto;
}

.text-column p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.text-column h2 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.text-column h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-column h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.text-column ul {
    margin: 20px 0 24px 30px;
    list-style: disc;
}

.text-column li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.inline-image {
    width: 100%;
    margin: 40px 0;
    background-color: #e9ecef;
}

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

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 25px;
    margin: 35px 0;
    font-style: italic;
    color: #555;
    font-size: 1.15rem;
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.95rem;
    color: #777;
}

.benefits-list {
    margin: 30px 0;
    list-style: none;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 18px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-inline {
    margin: 45px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.services-section {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    margin-bottom: 20px;
    color: #555;
}

.service-content ul {
    margin: 15px 0 20px 20px;
    list-style: disc;
}

.service-content li {
    margin-bottom: 8px;
    color: #555;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.duration {
    font-size: 0.9rem;
    color: #777;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-container {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid var(--secondary-color);
}

.form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.selected-service-display {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 15px;
    margin: 20px 0;
}

.selected-service-display p {
    margin-bottom: 8px;
    color: #0c5460;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--success-color);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 25px;
    margin: 50px 0;
    font-size: 0.95rem;
}

.disclaimer p {
    margin-bottom: 0;
    color: #856404;
}

.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-accept {
    padding: 10px 24px;
    background-color: var(--success-color);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-reject {
    padding: 10px 24px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-reject:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-link {
    color: #fff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.page-content {
    padding-top: 60px;
}

.page-hero {
    margin-bottom: 50px;
}

.contact-info-block {
    background-color: var(--light-bg);
    padding: 40px;
    margin: 40px 0;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.legal-page .text-column {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-updated {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 30px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.service-confirmation {
    margin: 30px 0;
}

.small-text {
    font-size: 0.95rem;
    color: #777;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        margin-top: 15px;
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .text-column h2 {
        font-size: 1.6rem;
    }

    .form-container {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .service-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}