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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.ad-notice {
    background-color: #f4f4f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0dc;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e4;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-content {
    max-width: 1400px;
    margin: 0 auto;
}

.article-hero {
    padding: 60px 30px 40px;
    background-color: #fff;
}

.hero-text-wrapper {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.article-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.subtitle {
    font-size: 19px;
    color: #5a5a5a;
    font-style: italic;
}

.hero-image-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #e8e8e4;
}

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

.intro-section,
.content-section,
.form-section,
.disclaimer-section {
    padding: 60px 30px;
}

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

.content-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.content-narrow p {
    font-size: 17px;
    margin-bottom: 24px;
}

.content-narrow h2 {
    font-size: 32px;
    margin-bottom: 28px;
    margin-top: 50px;
    color: #1a1a1a;
    font-weight: 600;
}

.content-narrow h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 35px;
    color: #2a2a2a;
    font-weight: 600;
}

.content-narrow h4 {
    font-size: 19px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #3a3a3a;
    font-weight: 600;
}

.inline-image-section {
    padding: 50px 30px;
    background-color: #f7f7f5;
}

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

.inline-cta {
    margin: 45px 0;
    padding: 35px;
    background-color: #f9f9f7;
    border-left: 4px solid #4a4a4a;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.cta-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

.visual-break {
    padding: 70px 30px;
    background-color: #2a2a2a;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-block blockquote {
    font-size: 26px;
    line-height: 1.5;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-block cite {
    font-size: 16px;
    color: #b8b8b8;
    font-style: normal;
}

.theme-block {
    margin: 40px 0;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e8e8e4;
}

.services-preview {
    padding: 70px 30px;
    background-color: #fff;
}

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

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #4a4a4a;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fafaf8;
    border: 1px solid #e0e0dc;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8e8e4;
}

.service-card h3 {
    font-size: 20px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #4a4a4a;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    padding: 0 25px 20px;
    font-size: 15px;
}

.duration {
    color: #666;
}

.price {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 18px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 24px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #3a3a3a;
}

.select-service.selected {
    background-color: #4a7c4a;
}

.technique-list {
    margin-top: 30px;
}

.technique-item {
    margin-bottom: 35px;
}

.testimonial-section {
    padding: 60px 30px;
    background-color: #f4f4f0;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-left: 3px solid #4a4a4a;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
    color: #2a2a2a;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
}

.form-section {
    background-color: #fff;
}

.registration-form {
    margin-top: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0cc;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafaf8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a4a4a;
}

.form-group input[readonly] {
    background-color: #f0f0ec;
    cursor: not-allowed;
}

.submit-button {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #3a3a3a;
}

.submit-button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.disclaimer-section {
    background-color: #f7f7f5;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

.main-footer {
    background-color: #2a2a2a;
    color: #b8b8b8;
    padding: 50px 30px 30px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1100px;
    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;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a7c4a;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #666;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background-color: #f9f9f7;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #fff;
    padding: 60px 40px;
    border: 1px solid #e0e0dc;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-content .selected-service-info {
    margin: 35px 0;
    padding: 25px;
    background-color: #f4f4f0;
    border-left: 4px solid #4a7c4a;
}

.thanks-content .back-link {
    display: inline-block;
    margin-top: 30px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.thanks-content .back-link:hover {
    opacity: 0.7;
}

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .service-card {
        width: 100%;
    }

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

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