* {
    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.6;
    color: #2c2420;
    background-color: #faf8f6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2420;
    color: #faf8f6;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #fff;
}

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

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

.cookie-btn.reject:hover {
    background-color: rgba(250, 248, 246, 0.1);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c2420;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: #8b6f47;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #f5ede5;
    padding: 4px 10px;
    border-radius: 3px;
}

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

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

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

.hero-visual {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 600px;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.95;
}

.intro-floating {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c2420;
    line-height: 1.3;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3f;
    margin-bottom: 16px;
}

.services-visual {
    padding: 60px 40px 100px;
    background-color: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c2420;
}

.service-grid-visual {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card-visual {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-card-visual:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 450px;
    height: 340px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2420;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a4a3f;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #8b6f47;
    margin-bottom: 20px;
}

.cta-select {
    padding: 14px 32px;
    background-color: #2c2420;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-select:hover {
    background-color: #3d332a;
    transform: translateY(-2px);
}

.form-section-overlay {
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.form-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.form-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.form-container-floating {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(250, 248, 246, 0.98);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.form-container-floating h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2420;
}

.form-intro {
    font-size: 16px;
    color: #5a4a3f;
    margin-bottom: 32px;
}

.selected-service-display {
    background-color: #f5ede5;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
}

.label-text {
    font-weight: 600;
    color: #2c2420;
    display: block;
    margin-bottom: 4px;
}

#selectedServiceText {
    color: #5a4a3f;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c2420;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4c4b5;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

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

.image-statement {
    margin: 0;
}

.statement-wrap {
    position: relative;
    width: 100%;
    height: 500px;
}

.statement-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statement-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 40px;
    background-color: rgba(44, 36, 32, 0.75);
    border-radius: 8px;
}

.statement-text h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}

.statement-text p {
    font-size: 18px;
    line-height: 1.6;
}

.footer {
    background-color: #2c2420;
    color: #faf8f6;
    padding: 60px 40px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #faf8f6;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(250, 248, 246, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #faf8f6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(250, 248, 246, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(250, 248, 246, 0.7);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(250, 248, 246, 0.1);
    font-size: 13px;
    color: rgba(250, 248, 246, 0.6);
}

.page-hero-small {
    margin-top: 70px;
    padding: 80px 40px 40px;
    background-color: #f5ede5;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2c2420;
}

.about-story {
    padding: 80px 40px;
}

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

.story-image-large {
    width: 100%;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}

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

.story-text-block {
    max-width: 800px;
    margin: 0 auto;
}

.story-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c2420;
}

.story-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3f;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background-color: #fff;
}

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2420;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2420;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a4a3f;
}

.team-minimal {
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-minimal h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c2420;
}

.team-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #5a4a3f;
}

.services-page-layout {
    padding: 60px 40px 100px;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2420;
}

.services-intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a4a3f;
}

.services-list-detailed {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-card {
    background-color: #fff;
    border: 1px solid #e8dfd5;
    border-radius: 10px;
    padding: 32px;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.service-card-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c2420;
}

.price-large {
    font-size: 28px;
    font-weight: 800;
    color: #8b6f47;
}

.service-detail-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a4a3f;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 15px;
    color: #5a4a3f;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.cta-section-bottom {
    padding: 80px 40px;
    background-color: #f5ede5;
    text-align: center;
}

.cta-section-bottom h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2420;
}

.cta-section-bottom p {
    font-size: 17px;
    color: #5a4a3f;
    margin-bottom: 32px;
}

.cta-button-alt {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2420;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background-color: #3d332a;
    transform: translateY(-2px);
}

.contact-layout {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2420;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a4a3f;
}

.contact-visual-side {
    flex: 0 0 400px;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-note {
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #5a4a3f;
}

.thanks-page {
    margin-top: 70px;
    padding: 100px 40px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b6f47;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c2420;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #5a4a3f;
    margin-bottom: 48px;
}

.thanks-next-steps {
    background-color: #f5ede5;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c2420;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a4a3f;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #8b6f47;
    color: #fff;
}

.btn-primary:hover {
    background-color: #a38556;
}

.btn-secondary {
    background-color: transparent;
    color: #2c2420;
    border: 2px solid #2c2420;
}

.btn-secondary:hover {
    background-color: #2c2420;
    color: #fff;
}

.legal-page {
    margin-top: 70px;
    padding: 60px 40px 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c2420;
}

.legal-updated {
    font-size: 14px;
    color: #8b6f47;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2420;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c2420;
}

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

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a4a3f;
    margin-bottom: 8px;
}

.legal-content a {
    color: #8b6f47;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #a38556;
}

@media (max-width: 768px) {
    .nav-overlay {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-overlay {
        left: 30px;
        right: 30px;
        bottom: 40px;
    }

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

    .service-card-visual:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
        height: 280px;
    }

    .contact-layout {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}