* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

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

.btn-cookie.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

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

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

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #999999;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
}

.story-intro {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

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

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

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

.story-intro h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.visual-break {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.visual-left,
.visual-right {
    flex: 1;
}

.visual-left img,
.visual-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visual-right h3,
.visual-left h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.visual-right p,
.visual-left p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

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

.insight-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.insight-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    text-align: center;
}

.image-inline {
    margin: 3rem 0;
    text-align: center;
    background-color: #e8e8e8;
}

.image-inline img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fafafa;
    border-left: 3px solid #2a2a2a;
}

.testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 500;
}

.collection-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.collection-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 4rem;
}

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

.product-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.product-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    font-weight: 600;
}

.product-card p {
    margin: 0 1.5rem 1rem;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 1.5rem 1rem;
}

.select-service,
.btn-primary {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.select-service:hover,
.btn-primary:hover {
    background-color: #3a3a3a;
}

.order-form-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

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

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.selected-product-info {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 3px solid #1a1a1a;
}

.order-form {
    background-color: #ffffff;
    padding: 2.5rem;
}

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

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

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

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

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

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

.final-assurance {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.final-assurance h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #666666;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

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

.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.15rem;
    color: #666666;
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #3a3a3a;
}

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

.values-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

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

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

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

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

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.approach-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #3a3a3a;
}

.services-collection {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.product-features {
    list-style: none;
    margin: 1rem 1.5rem 1.5rem;
    padding: 0;
}

.product-features li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #555555;
}

.product-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.services-info {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.services-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.included-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

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

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

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

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

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

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

.visit-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.visit-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
}

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

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.thanks-content {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #3a3a3a;
}

.order-summary {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 3px solid #1a1a1a;
    text-align: left;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.order-summary p {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}

.next-steps {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #3a3a3a;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

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

    .split-visual {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}