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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a1a1a;
}

.ad-notice {
    font-size: 12px;
    color: #888;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #fafafa;
}

.hero-text h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-right {
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #000000;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #3a3a3a;
    text-align: center;
}

.story-section,
.trust-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 0;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    padding: 60px;
    background-color: #f8f8f8;
}

.split-content h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.split-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.benefits-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    flex: 1;
    padding: 30px;
    background-color: #fafafa;
    border-left: 3px solid #1a1a1a;
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.testimonial-section {
    padding: 80px 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial {
    text-align: center;
    font-style: italic;
}

.testimonial p {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #cccccc;
}

.collection-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.collection-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 30px;
}

.card-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #000000;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-section h3 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-cookie.accept {
    background-color: #4CAF50;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #666;
    color: #ffffff;
}

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

.page-hero {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.page-hero h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
}

.about-content,
.services-intro {
    padding: 60px 0;
}

.timeline-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.timeline {
    margin-top: 60px;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    min-width: 100px;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-section {
    padding: 100px 0;
}

.team-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.team-member h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.philosophy-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.collections-detailed {
    padding: 80px 0;
}

.service-block {
    margin-bottom: 60px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.additional-services {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-note {
    display: block;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cccccc;
}

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cta-section .cta-primary:hover {
    background-color: #f0f0f0;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info,
.contact-visual {
    flex: 1;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.email-display {
    color: #4a4a4a;
}

.contact-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-note {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.visit-info {
    padding: 60px 0;
    background-color: #fafafa;
}

.visit-info h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.visit-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.map-section {
    padding: 80px 0;
}

.map-placeholder {
    height: 400px;
    background-color: #e8e8e8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.faq-section h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

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

.thanks-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 60px;
}

.thanks-info {
    text-align: left;
    margin-bottom: 40px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding-left: 40px;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.thanks-note {
    padding: 24px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    margin-bottom: 40px;
}

.thanks-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

.what-to-expect {
    padding: 80px 0;
    background-color: #ffffff;
}

.expect-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.expect-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.expect-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.expect-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-content {
    padding: 80px 0;
}

.legal-intro {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h4 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-right {
        min-height: 300px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 20px;
    }

    .benefits-grid,
    .footer-grid,
    .contact-layout {
        flex-direction: column;
    }

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

    .team-member,
    .service-card,
    .expect-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .page-hero h2 {
        font-size: 36px;
    }

    .thanks-content h2 {
        font-size: 36px;
    }
}