* {
    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;
}

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

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

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

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

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    margin-bottom: 60px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    background-color: #e9ecef;
}

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

.cta-button {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 21px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.visual-break {
    width: 100%;
    background-color: #e9ecef;
}

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

.process-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.process-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.trust-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.testimonial-section {
    padding: 80px 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.services-preview {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: #555;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-card .price {
    margin: 0 25px 20px;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.select-service {
    margin: auto 25px 25px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.service-display {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-display p {
    font-size: 16px;
    color: #2c3e50;
}

.service-display span {
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

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

.submit-button {
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

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

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 30px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.story-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.values-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.team-container img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    object-fit: cover;
    background-color: #e9ecef;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.coverage-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.coverage-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.coverage-section p {
    max-width: 800px;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.commitment-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-detailed {
    padding: 80px 30px;
    background-color: #ffffff;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 24px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1.5;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-details > p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.location-block,
.contact-method {
    margin-bottom: 35px;
}

.location-block h3,
.contact-method h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.location-block p,
.contact-method p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.hours-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.service-area-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.service-area-section p {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.response-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.response-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.response-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
    min-height: 50vh;
}

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

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmed {
    background-color: #d4edda;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.service-confirmed p {
    font-size: 18px;
    color: #155724;
}

.service-confirmed span {
    font-weight: 600;
}

.next-steps {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

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

.button-primary,
.button-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.button-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.button-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

.what-happens-next {
    padding: 80px 30px;
    background-color: #ffffff;
}

.what-happens-next h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-content {
    padding: 80px 30px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .process-container,
    .story-container,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .trust-item,
    .value-item {
        flex: 1 1 100%;
    }

    .steps-grid {
        flex-direction: column;
    }

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