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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo-area {
    flex: 0 0 auto;
}

.logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.ad-disclosure {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    padding: 0 1rem;
}

.nav-main {
    display: flex;
    gap: 2rem;
    flex: 0 0 auto;
}

.nav-main a {
    color: #3c3c3c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.hero-section {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #f0f0f0;
    text-align: center;
    font-weight: 300;
    max-width: 700px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-fluid {
    width: 100%;
    padding: 4rem 0;
}

.intro-section {
    background-color: #ffffff;
    margin-bottom: 0;
}

.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.story-section {
    background-color: #f5f2ee;
}

.story-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.story-image {
    flex: 0 0 45%;
    min-height: 500px;
}

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

.story-content {
    flex: 1 1 55%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.problem-section {
    background-color: #8b7355;
    color: #ffffff;
}

.problem-section .section-heading {
    color: #ffffff;
}

.problem-section p {
    color: #f5f5f5;
    font-size: 1.15rem;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-heading-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.insight-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

.insight-content {
    flex: 1 1 50%;
    padding-left: 3rem;
}

.insight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.insight-image {
    flex: 0 0 45%;
    height: 500px;
}

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

.trust-section {
    background-color: #f9f7f5;
}

.trust-list {
    list-style: none;
    margin-top: 2rem;
}

.trust-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial-section {
    background-color: #ffffff;
}

.testimonial-card {
    background-color: #f5f2ee;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b7355;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
}

.process-section {
    background-color: #2c2c2c;
    color: #ffffff;
}

.process-section .section-heading-center {
    color: #ffffff;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    background-color: #3a3a3a;
    padding: 2rem;
    border-top: 3px solid #8b7355;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.process-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d0d0d0;
}

.benefits-section {
    background-color: #ffffff;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #555;
}

.services-preview-section {
    background-color: #f5f2ee;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
}

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

.service-content {
    padding: 2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    flex: 1 1 auto;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b7355;
    margin-top: auto;
}

.cta-section-primary {
    background: linear-gradient(135deg, #8b7355 0%, #6d5d4f 100%);
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section-primary p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
}

.btn-cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #8b7355;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.composition-section {
    background-color: #ffffff;
}

.composition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.composition-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
}

.composition-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.composition-item p {
    font-size: 1rem;
    color: #555;
}

.order-section {
    background-color: #f9f7f5;
}

.contact-form {
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

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

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: #555;
}

.form-group-checkbox label a {
    color: #8b7355;
    text-decoration: underline;
}

.btn-submit {
    background-color: #8b7355;
    color: #ffffff;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #6d5d4f;
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #f0ede9;
    padding: 2rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.footer-main {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 4rem 0 2rem;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #8b7355;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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 1 auto;
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6d5d4f;
}

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

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

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

    .nav-main {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .story-grid,
    .container-split {
        flex-direction: column;
    }

    .story-image,
    .insight-image {
        flex: 1 1 auto;
        width: 100%;
        min-height: 300px;
    }

    .story-content,
    .insight-content {
        padding: 2rem;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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