* {
    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: #2c2c2c;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    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: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f8f8f8;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin: 0 auto;
}

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

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

.nav-links a:hover {
    color: #6b4e71;
}

.hero-visual {
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    max-width: 600px;
}

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

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

.story-intro {
    background-color: #fafafa;
}

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

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.visual-break {
    padding: 0;
    margin: 3rem 0;
}

.image-overlap img {
    width: 100%;
    height: 500px;
    display: block;
}

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

.insight-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.insight-visual {
    flex: 1;
    background-color: #f0e8f0;
}

.insight-visual img {
    width: 100%;
    height: 400px;
    display: block;
}

.trust-elements {
    background-color: #f5f5f5;
}

.trust-elements h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #6b4e71;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

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

.benefits-visual h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

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

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

.benefit-item img {
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
    background-color: #e8e0e8;
}

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

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

.services-preview {
    background-color: #fafafa;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.services-preview > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e8e0e8;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-card .price {
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b4e71;
}

.service-card .btn-select {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.9rem;
    background-color: #6b4e71;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .btn-select:hover {
    background-color: #563d59;
}

.form-section {
    background-color: #f0e8f0;
    padding: 4rem 2rem;
}

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

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

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

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

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #6b4e71;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fef9e7;
    border-top: 2px solid #f4d03f;
    border-bottom: 2px solid #f4d03f;
    padding: 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #5a5a5a;
    text-align: center;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #6b4e71;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #f0f0f0;
    color: #2c2c2c;
}

.btn-cookie.reject:hover {
    background-color: #d8d8d8;
}

.page-hero {
    height: 400px;
    background: linear-gradient(135deg, #6b4e71, #8a6d91);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-hero.small {
    height: 250px;
}

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

.about-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-content h2:first-of-type {
    margin-top: 0;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.philosophy-list {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.philosophy-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-visual {
    padding: 3rem 0;
}

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

.image-grid img {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    height: 400px;
    background-color: #e8e0e8;
}

.values-section {
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #6b4e71;
}

.value-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-full {
    padding: 4rem 2rem;
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.service-details {
    padding: 0 1.5rem 1rem;
    list-style: none;
}

.service-details li {
    padding: 0.4rem 0;
    color: #4a4a4a;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b4e71;
    font-weight: 700;
}

.btn-action {
    display: block;
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.9rem;
    background-color: #6b4e71;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-action:hover {
    background-color: #563d59;
}

.care-info {
    background-color: #fafafa;
    padding: 4rem 2rem;
}

.care-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.care-info > p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.care-tips {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tip {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tip h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #6b4e71;
}

.tip p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-content {
    padding: 4rem 2rem;
}

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

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

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-block {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #6b4e71;
}

.contact-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-note {
    background-color: #f0e8f0;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #6b4e71;
}

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

.contact-note p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.faq-section {
    background-color: #fafafa;
    padding: 4rem 2rem;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #6b4e71;
}

.faq-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f0f8f0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-section .content-narrow {
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.order-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b4e71;
    margin-bottom: 1rem;
}

.thanks-section p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #6b4e71;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

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

.update-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #6b4e71;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content a {
    color: #6b4e71;
    text-decoration: underline;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #6b4e71;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

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

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

    .benefit-item {
        flex: 1 1 100%;
    }

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

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

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

    .care-tips {
        flex-direction: column;
    }

    .tip {
        flex: 1 1 100%;
    }

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

    .contact-block {
        flex: 1 1 100%;
    }

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

    .image-grid img {
        flex: 1 1 100%;
    }

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

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