* {
    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;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #2c3e50;
}

.main-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 32px;
}

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

.hero-article h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.article-image {
    margin: 48px 0;
    width: 100%;
    background-color: #f7fafc;
}

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

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

.content-block h2 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.content-block h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.content-list li {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.content-list li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: #4a5568;
    font-weight: 700;
}

.content-with-image {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin: 56px 0;
}

.text-content {
    flex: 1;
}

.inline-image {
    flex: 0 0 320px;
    background-color: #f7fafc;
}

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

.highlighted-section {
    background-color: #f7fafc;
    padding: 40px;
    margin: 56px 0;
    border-left: 4px solid #4a5568;
}

.highlighted-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
}

.highlighted-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.testimonials-section {
    margin: 64px 0;
}

.testimonials-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
}

.testimonial {
    margin-bottom: 40px;
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #718096;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial cite {
    font-size: 16px;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

.services-overview {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 32px;
    transition: box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.service-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 24px 0 16px 0;
}

.price-detail {
    font-size: 16px;
    font-weight: 400;
    color: #718096;
}

.cta-button {
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.cta-button:hover {
    background-color: #1a202c;
}

.form-section {
    margin: 64px 0;
    padding: 48px;
    background-color: #f7fafc;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.form-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    background-color: #ffffff;
    color: #2d3748;
    font-family: inherit;
}

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

.submit-button {
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: #1a202c;
}

.disclaimer-section {
    margin: 64px 0;
    padding: 32px;
    background-color: #fff5f5;
    border-left: 4px solid #fc8181;
}

.disclaimer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #742a2a;
}

.references-section {
    margin: 64px 0;
    padding: 32px;
    background-color: #f7fafc;
}

.references-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.references-list {
    list-style: none;
    counter-reset: ref-counter;
    padding: 0;
}

.references-list li {
    counter-increment: ref-counter;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.references-list li::before {
    content: "[" counter(ref-counter) "]";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #2d3748;
}

.references-list a {
    color: #3182ce;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.cta-inline {
    margin: 56px 0;
    padding: 40px;
    background-color: #edf2f7;
    text-align: center;
}

.cta-inline h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.cta-inline p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
}

.cta-link {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    margin: 8px;
}

.cta-link:hover {
    background-color: #1a202c;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.contact-card {
    padding: 32px;
    background-color: #f7fafc;
    border-left: 4px solid #4a5568;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.email-display {
    font-weight: 600;
    color: #2d3748;
}

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

.faq-item {
    margin-bottom: 32px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    text-align: center;
    padding: 64px 32px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 22px;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-details {
    margin: 40px 0;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-image {
    max-width: 600px;
    margin: 48px auto;
    background-color: #f7fafc;
}

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

.next-steps {
    margin: 48px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
}

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

.steps-list li {
    counter-increment: step-counter;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    padding-left: 48px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    background-color: #2d3748;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.thanks-cta {
    margin-top: 48px;
}

.thanks-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
}

.legal-content {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.legal-intro {
    font-size: 16px;
    color: #718096;
    margin-bottom: 48px;
}

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

.legal-section h2 {
    font-size: 26px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-section a {
    color: #3182ce;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 56px 32px 24px 32px;
    margin-top: 64px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #cbd5e0;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 15px;
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #4a5568;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px 32px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #38a169;
}

.cookie-reject {
    background-color: transparent;
    color: #e2e8f0;
    border: 1px solid #4a5568;
}

.cookie-reject:hover {
    background-color: #2d3748;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

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

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

    .content-block p {
        font-size: 17px;
    }

    .content-with-image {
        flex-direction: column;
    }

    .inline-image {
        flex: none;
        width: 100%;
    }

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

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

    .form-section {
        padding: 32px 24px;
    }
}