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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a472a;
}

.hero-narrative {
    display: flex;
    flex-direction: column;
    background: #f8faf9;
}

.hero-content-wrapper {
    padding: 4rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a472a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.8;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8ebe9;
}

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

.story-intro {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.narrow-content h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.problem-visual {
    background: #f8faf9;
    padding: 5rem 2rem;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 1.8rem;
    color: #1a472a;
    margin-bottom: 1.2rem;
}

.split-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.split-image {
    flex: 1;
    background-color: #d4d8d6;
}

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

.insight-section {
    padding: 6rem 2rem;
    background: #1a472a;
    color: #ffffff;
}

.centered-text {
    text-align: center;
}

.centered-text h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.centered-text p {
    color: #e8f5e9;
    font-size: 1.15rem;
}

.trust-build {
    padding: 5rem 2rem;
    background: #ffffff;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8faf9;
    border-left: 4px solid #1a472a;
}

.trust-card h4 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-flow {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-item {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1a472a;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.benefits-container h2 {
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-item {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-item img {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: #d4d8d6;
}

.benefit-item h4 {
    font-size: 1.5rem;
    color: #1a472a;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.pricing-reveal {
    padding: 6rem 2rem;
    background: #f8faf9;
}

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

.pricing-content h2 {
    font-size: 2.2rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.price-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.price-card.featured {
    border: 2px solid #1a472a;
    background: #f0f7f3;
}

.price-card h4 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a472a;
}

.cta-primary {
    padding: 6rem 2rem;
    background: #1a472a;
    color: #ffffff;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-wrapper > p {
    text-align: center;
    color: #e8f5e9;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.service-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a472a;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #1a472a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #245a37;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background: #fef5e7;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #5d4e37;
    line-height: 1.7;
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie.accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #229954;
}

.btn-cookie.reject {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #6c7a7b;
}

.page-hero {
    background: #1a472a;
    color: #ffffff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #e8f5e9;
}

.about-story {
    padding: 5rem 2rem;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.about-image-block {
    flex: 1;
    background-color: #d4d8d6;
}

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

.methodology-section {
    padding: 5rem 2rem;
    background: #f8faf9;
}

.team-approach {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f8faf9;
    border-radius: 8px;
}

.team-card h4 {
    font-size: 1.4rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.team-card p {
    color: #4a5568;
    line-height: 1.7;
}

.philosophy-block {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #d4d8d6;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h3 {
    font-size: 1.8rem;
    color: #1a472a;
    margin-bottom: 1.2rem;
}

.philosophy-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.values-content {
    max-width: 1000px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.2rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 3rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h4 {
    font-size: 1.4rem;
    color: #1a472a;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

.services-intro {
    padding: 3rem 2rem;
    background: #ffffff;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.service-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #d4d8d6;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-info h4 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-steps {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-steps li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.service-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-duration,
.service-note {
    font-style: italic;
    color: #7f8c8d;
}

.service-guarantee {
    padding: 4rem 2rem;
    background: #f0f7f3;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-content h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.guarantee-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.contact-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h4 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.response-time-info {
    padding: 4rem 2rem;
    background: #f8faf9;
}

.response-time-info h3 {
    font-size: 1.8rem;
    color: #1a472a;
    margin-bottom: 1.2rem;
}

.coverage-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.coverage-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coverage-content h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.coverage-content > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.locations-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 220px;
    padding: 1.5rem;
    background: #f8faf9;
    border-radius: 4px;
}

.location-item h4 {
    font-size: 1.2rem;
    color: #1a472a;
    margin-bottom: 0.8rem;
}

.location-item p {
    color: #4a5568;
}

.thanks-hero {
    background: #1a472a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #e8f5e9;
}

.next-steps {
    padding: 5rem 2rem;
    background: #ffffff;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 2.2rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 3rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1a472a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.4rem;
    color: #1a472a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

.important-info {
    padding: 4rem 2rem;
    background: #fef5e7;
}

.info-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.info-box h3 {
    font-size: 1.6rem;
    color: #d68910;
    margin-bottom: 1.5rem;
}

.instruction-list {
    list-style: none;
}

.instruction-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.instruction-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #f39c12;
}

.selected-service-info {
    padding: 4rem 2rem;
    background: #f0f7f3;
}

.service-summary {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.service-summary h3 {
    font-size: 1.6rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.service-summary p {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 600;
}

.contact-emergency {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.emergency-box h3 {
    font-size: 1.8rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.emergency-box p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.emergency-email {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a472a;
}

.legal-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a472a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content ul li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .split-content,
    .about-container,
    .philosophy-wrapper,
    .contact-wrapper {
        flex-direction: column;
    }

    .benefit-item,
    .service-block {
        flex-direction: column !important;
    }

    .benefit-item img {
        width: 100%;
    }

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

    .price-card {
        max-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}