* {
    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: #2d2d2d;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
}

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

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

.nav-links a:hover {
    color: #2d2d2d;
}

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

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

.hero-section {
    position: relative;
    margin-bottom: 50px;
}

.hero-image-wrapper {
    width: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.hero-overlay {
    padding: 40px 0 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    font-weight: 400;
}

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
    color: #1a1a1a;
    margin: 50px 0 25px;
}

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #2d2d2d;
    margin: 40px 0 20px;
}

.content-narrow h4 {
    font-size: 19px;
    line-height: 1.4;
    font-weight: 600;
    color: #2d2d2d;
    margin: 30px 0 15px;
}

.content-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #3d3d3d;
    margin-bottom: 25px;
}

.content-narrow ul {
    margin: 20px 0 25px 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #3d3d3d;
}

.content-narrow li {
    margin-bottom: 12px;
}

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

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

.insight-box {
    background-color: #fafafa;
    border-left: 4px solid #2d2d2d;
    padding: 30px;
    margin: 40px 0;
}

.insight-box h3 {
    margin-top: 0;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 2px;
}

.quote-text {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

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

.service-card {
    background-color: #fafafa;
    margin: 35px 0;
    padding: 0;
    border-radius: 2px;
    overflow: hidden;
}

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

.service-card h4 {
    margin: 25px 25px 15px;
}

.service-card p {
    margin: 0 25px 20px;
    font-size: 17px;
}

.price {
    font-size: 26px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 20px 25px;
}

.cta-button {
    background-color: #2d2d2d;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    margin: 20px 25px 25px;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    background-color: #f5f5f5;
    padding: 40px 30px;
    margin: 50px 0;
    text-align: center;
}

.steps-section {
    margin: 40px 0;
}

.step {
    margin: 30px 0;
    padding-left: 25px;
    border-left: 3px solid #e0e0e0;
}

.final-cta-section {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 50px 40px;
    margin: 60px 0;
    text-align: center;
}

.final-cta-section h3 {
    color: #ffffff;
    margin-top: 0;
}

.final-cta-section p {
    color: #e8e8e8;
}

.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    overflow-y: auto;
}

.form-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    background-color: #ffffff;
    max-width: 550px;
    width: 100%;
    padding: 45px;
    position: relative;
    border-radius: 2px;
}

.close-form {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.close-form:hover {
    color: #2d2d2d;
}

.form-container h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.form-intro {
    margin-bottom: 30px;
    color: #555;
}

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

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

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

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

.submit-button {
    background-color: #2d2d2d;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.site-footer {
    background-color: #2d2d2d;
    color: #e8e8e8;
    padding: 60px 30px 20px;
    margin-top: 80px;
}

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

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

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

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

.footer-column a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #3a3a3a;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #2d2d2d;
}

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

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

.cookie-accept {
    background-color: #2d2d2d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a1a1a;
}

.cookie-reject {
    background-color: #e8e8e8;
    color: #2d2d2d;
}

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

.about-page .team-section,
.about-page .values-section {
    background-color: #f9f9f9;
    padding: 35px;
    margin: 40px 0;
}

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

.cta-link {
    display: inline-block;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

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

.service-full {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    gap: 25px;
}

.service-image-wrapper {
    width: 100%;
    background-color: #f5f5f5;
}

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

.service-details {
    flex: 1;
}

.price-display {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 20px 0;
}

.additional-info {
    background-color: #f9f9f9;
    padding: 35px;
    margin: 50px 0;
}

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

.contact-block {
    margin: 35px 0;
    padding: 25px;
    background-color: #f9f9f9;
}

.visit-section {
    margin: 50px 0;
}

.location-info {
    background-color: #f5f5f5;
    padding: 35px;
    margin: 40px 0;
}

.faq-section {
    margin: 50px 0;
}

.faq-item {
    margin: 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-cta {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.contact-cta h3 {
    color: #ffffff;
    margin-top: 0;
}

.contact-cta p {
    color: #e8e8e8;
}

.thanks-content {
    text-align: center;
    padding: 50px 0;
}

.confirmation-box {
    background-color: #f9f9f9;
    padding: 35px;
    margin: 40px 0;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps ol {
    margin: 20px 0 20px 30px;
}

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

.action-link {
    display: inline-block;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.action-link:hover {
    background-color: #1a1a1a;
}

.additional-info-thanks {
    margin: 40px 0;
    padding: 25px;
    background-color: #f5f5f5;
}

.legal-page h1 {
    margin-bottom: 30px;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .content-narrow h2 {
        font-size: 28px;
    }

    .content-narrow h3 {
        font-size: 22px;
    }

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

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

    .form-container {
        padding: 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}