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

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

.main-nav {
    background-color: #fff;
    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;
}

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

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

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

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

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

.hero-content {
    position: relative;
    width: 100%;
    height: 520px;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    padding: 60px 40px 40px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    max-width: 800px;
    font-weight: 700;
}

.content-flow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px 80px;
}

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

.intro-text {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.content-flow p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #3a3a3a;
}

.content-flow h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.content-flow h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2a2a2a;
    font-weight: 600;
}

.inline-image-section {
    margin: 45px 0;
}

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

.inline-cta-section {
    margin: 40px 0;
    padding: 25px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
}

.text-cta {
    font-size: 19px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.text-cta:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.service-grid {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-grid h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: #e8e8e8;
}

.service-card h3 {
    margin: 25px 25px 15px;
    font-size: 24px;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    color: #5a5a5a;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 25px 25px;
}

.select-service-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin: 0 25px 25px;
}

.select-service-btn:hover {
    background-color: #1d4ed8;
}

.contact-form-wrapper {
    margin: 50px 0;
    background-color: #f9f9f9;
    padding: 40px;
    border-left: 4px solid #2563eb;
}

.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 30px;
}

#selected-service-display {
    color: #2563eb;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    font-size: 15px;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    background-color: #fff;
}

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

.submit-btn {
    background-color: #16a34a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

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

.trust-section {
    margin: 60px 0;
    padding: 40px 0;
    background-color: #f5f5f5;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
}

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

.testimonial {
    background-color: #fff;
    padding: 30px;
    margin: 25px 0;
    border-left: 3px solid #d4d4d4;
    font-style: italic;
}

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

.testimonial cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.final-cta-section {
    text-align: center;
    margin: 60px 0 40px;
    padding: 40px 0;
}

.final-cta-section h2 {
    margin-bottom: 30px;
}

.primary-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.primary-cta:hover {
    background-color: #1d4ed8;
}

.secondary-cta {
    display: inline-block;
    background-color: #6b7280;
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin: 10px;
}

.secondary-cta:hover {
    background-color: #4b5563;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.disclaimer strong {
    color: #d0d0d0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -2px 10px 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 {
    margin: 0;
    font-size: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #93c5fd;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-btn.accept {
    background-color: #16a34a;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #15803d;
}

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

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

.thanks-content {
    text-align: center;
    padding: 60px 30px;
}

.thanks-icon {
    font-size: 80px;
    color: #16a34a;
    margin-bottom: 30px;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #f0f9ff;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #2563eb;
    text-align: left;
}

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

.next-step {
    margin-bottom: 30px;
}

.next-step h3 {
    margin-bottom: 10px;
}

.thanks-contact-info {
    margin: 40px 0;
    font-size: 16px;
    color: #5a5a5a;
}

.thanks-cta-section {
    margin-top: 50px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 40px 0;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #d0d0d0;
    padding: 12px 15px;
    text-align: left;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.contact-info-layout {
    display: flex;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-info-primary {
    flex: 1;
    min-width: 300px;
}

.contact-info-secondary {
    flex: 1.5;
    min-width: 300px;
}

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

.contact-detail h3 {
    margin-bottom: 10px;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.info-list {
    margin-left: 25px;
    margin-top: 15px;
}

.info-list li {
    margin-bottom: 10px;
}

.contact-map-placeholder {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 40px;
    text-align: center;
}

.map-replacement {
    max-width: 600px;
    margin: 0 auto;
}

.service-detail-grid {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.service-detail-content {
    flex: 1.5;
    min-width: 350px;
    padding: 35px;
}

.service-detail-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 25px;
}

.service-features {
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-ideal {
    background-color: #f0f9ff;
    padding: 18px;
    margin: 25px 0;
    border-left: 3px solid #2563eb;
    font-size: 15px;
}

.service-cta {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.service-cta:hover {
    background-color: #1d4ed8;
}

.service-info-section {
    margin: 60px 0;
    background-color: #f9f9f9;
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.process-step {
    background-color: #fff;
    padding: 25px;
    border-left: 4px solid #2563eb;
}

.process-step h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
    }

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

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

    .service-detail-card {
        flex-direction: column;
    }

    .contact-info-layout {
        flex-direction: column;
        gap: 30px;
    }

    .trust-section {
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-info-section {
        margin-left: 0;
        margin-right: 0;
        padding: 30px 20px;
    }
}