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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

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

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

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

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

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

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

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.article-body h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.article-body h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.article-body h4 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: #333;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0 25px 30px;
}

.article-body li {
    margin-bottom: 10px;
}

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

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

.inline-image figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.content-highlight {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #4a90e2;
}

.content-highlight h2,
.content-highlight h3 {
    margin-top: 0;
}

.service-preview {
    margin: 50px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    margin: 25px 0;
    border-radius: 4px;
}

.service-card h4 {
    margin-top: 0;
    font-size: 22px;
}

.service-card p {
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 600;
    color: #4a90e2;
    margin: 20px 0;
}

.inline-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.inline-cta:hover {
    background-color: #357abd;
}

.booking-section {
    background-color: #f9f9f9;
    padding: 50px 40px;
    margin: 60px 0;
    border-radius: 4px;
}

.booking-section h2 {
    margin-top: 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.disclaimer {
    background-color: #fff9e6;
    border: 1px solid #f0e5c0;
    padding: 25px;
    margin: 50px 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer strong {
    color: #1a1a1a;
}

.cta-block {
    text-align: center;
    background-color: #f5f5f5;
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.cta-block h3 {
    margin-top: 0;
    font-size: 28px;
}

.service-detail {
    margin: 50px 0;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #4a90e2;
    margin: 20px 0;
}

.contact-info-block {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    margin: 30px 0;
    border-radius: 4px;
}

.contact-info-block h2 {
    margin-top: 0;
    font-size: 24px;
}

.contact-info-block .note {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 25px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .lead-paragraph {
        font-size: 19px;
    }

    .article-body {
        font-size: 17px;
    }

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

    .article-body h3 {
        font-size: 21px;
    }

    .editorial-content {
        margin: 40px auto;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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