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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #d4c5b3;
    color: #1c1c1c;
}

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

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

.btn-cookie.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: #ffffff;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8b7355;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.story-section {
    padding: 6rem 2rem;
    background: #fafaf8;
}

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

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

h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1c1c1c;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #3c3c3c;
}

.inline-image {
    margin: 3rem 0;
    overflow: hidden;
}

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

.reference-inline {
    display: inline-block;
    margin-left: 3px;
    color: #8b7355;
    font-weight: 600;
    font-size: 0.9rem;
}

.problem-section {
    padding: 6rem 2rem;
}

.alt-bg {
    background: #f5f1ed;
}

.two-column-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-visual {
    flex: 0 0 380px;
    height: 500px;
    overflow: hidden;
}

.col-visual img {
    width: 100%;
    height: 100%;
}

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

.services-preview {
    padding: 7rem 2rem;
}

.section-title-center {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #5c5c5c;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 2rem);
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 320px;
}

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

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4c4c4c;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b7355;
    margin: 1.5rem 0;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #1c1c1c;
}

.service-card.selected {
    border: 3px solid #8b7355;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonial-block {
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background: #fafaf8;
    border-left: 4px solid #c4b3a2;
}

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

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #6c6c6c;
}

.form-section {
    padding: 6rem 2rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-display {
    background: #e8dfd3;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.service-display.hidden {
    display: none;
}

.service-display p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: #1c1c1c;
}

.btn-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.final-cta {
    padding: 5rem 2rem;
    background: #1c1c1c;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.6rem;
}

.final-cta p {
    color: #d4c5b3;
    font-size: 1.3rem;
}

.site-footer {
    background: #0c0c0c;
    color: #c4c4c4;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #a4a4a4;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(212, 197, 179, 0.1);
    border-left: 3px solid #8b7355;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    font-size: 0.9rem;
}

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-references a {
    color: #8b7355;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2c2c2c;
    font-size: 0.9rem;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #fafaf8;
    padding: 4rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1c1c1c;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.thanks-service {
    background: #e8dfd3;
    padding: 1.5rem;
    margin: 2rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #1c1c1c;
}

.about-hero {
    padding: 5rem 2rem;
    background: #f5f1ed;
}

.about-hero h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    padding: 5rem 2rem;
}

.about-image {
    margin: 3rem 0;
    height: 450px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
}

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

.services-page-hero h1 {
    font-size: 3rem;
    color: #ffffff;
}

.services-page-hero p {
    font-size: 1.2rem;
    color: #d4c5b3;
}

.services-list {
    padding: 6rem 2rem;
}

.contact-hero {
    padding: 5rem 2rem;
    background: #fafaf8;
    text-align: center;
}

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

.contact-info {
    padding: 5rem 2rem;
}

.info-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f5f1ed;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1c1c1c;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
}

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .two-column-flex {
        flex-direction: column;
    }

    .col-visual {
        flex: 1;
        width: 100%;
        height: 400px;
    }

    .service-card {
        flex: 0 0 calc(50% - 2rem);
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .service-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .section-title-center {
        font-size: 2rem;
    }

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