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

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

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

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

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

.brand h1 {
    font-size: 24px;
    color: #2d3436;
    font-weight: 700;
}

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

.nav-main a {
    color: #636e72;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-main a:hover {
    color: #2d3436;
}

.ad-notice {
    font-size: 12px;
    color: #b2bec3;
    padding: 4px 12px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
}

.hero-content-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 48px;
    max-width: 600px;
    border-radius: 8px;
}

.hero-content-card h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2d3436;
}

.hero-content-card p {
    font-size: 18px;
    color: #636e72;
}

.intro-narrative {
    padding: 80px 0;
}

.narrative-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.narrative-text {
    flex: 1;
}

.narrative-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2d3436;
}

.narrative-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #636e72;
}

.narrative-image {
    flex: 1;
}

.narrative-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.problem-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.problem-card-container {
    display: flex;
    justify-content: center;
}

.problem-card {
    max-width: 800px;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.problem-card h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2d3436;
}

.problem-card p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #636e72;
}

.insight-visual {
    padding: 80px 0;
}

.insight-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image-left {
    flex: 0 0 45%;
}

.insight-image-left img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2d3436;
}

.insight-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #636e72;
}

.trust-building {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.trust-header h3 {
    font-size: 36px;
    color: #2d3436;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2d3436;
}

.trust-card p {
    font-size: 16px;
    color: #636e72;
}

.testimonials-inline {
    padding: 80px 0;
}

.testimonial-flow {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background-color: #f8f9fa;
    border-left: 4px solid #74b9ff;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2d3436;
}

.testimonial-author {
    font-size: 15px;
    color: #636e72;
    font-weight: 600;
}

.collections-reveal {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title-center {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2d3436;
}

.collections-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.collection-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.collection-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.collection-info {
    padding: 28px;
}

.collection-info h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3436;
}

.collection-info p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #00b894;
}

.cta-primary {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    background-color: #ffffff;
    color: #6c5ce7;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-wrapper h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2d3436;
}

.form-subtitle {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3436;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff5e6;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.8;
}

.footer-main {
    background-color: #2d3436;
    color: #b2bec3;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: #b2bec3;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 52, 54, 0.98);
    color: #ffffff;
    padding: 24px;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background-color: #00b894;
    color: #ffffff;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

.page-hero-simple h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2d3436;
}

.lead-text {
    font-size: 20px;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto;
}

.about-narrative {
    padding: 80px 0;
}

.content-column-centered {
    max-width: 800px;
    margin: 0 auto;
}

.content-column-centered h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2d3436;
}

.content-column-centered p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #636e72;
    line-height: 1.8;
}

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

.philosophy-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2d3436;
}

.philosophy-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #636e72;
}

.philosophy-list {
    list-style: none;
    margin-top: 24px;
}

.philosophy-list li {
    font-size: 17px;
    color: #636e72;
    padding: 8px 0 8px 28px;
    position: relative;
}

.philosophy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6c5ce7;
    font-size: 24px;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3436;
}

.value-card p {
    font-size: 16px;
    color: #636e72;
}

.team-approach {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-secondary {
    padding: 80px 0;
}

.cta-box-secondary {
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.cta-box-secondary h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2d3436;
}

.btn-cta-link {
    display: inline-block;
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-cta-link:hover {
    background-color: #5f4dd1;
}

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

.service-item {
    margin-bottom: 80px;
}

.service-content-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-item.reverse .service-content-wrap {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #636e72;
}

.service-features {
    margin: 28px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d3436;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    font-size: 16px;
    color: #636e72;
    padding: 6px 0 6px 24px;
    position: relative;
}

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

.service-price-box {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #636e72;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #00b894;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.cta-services {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

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

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

.contact-info-block h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2d3436;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 600;
}

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

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: #fff5e6;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 8px;
}

.contact-map-placeholder {
    flex: 1;
}

.map-box {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.map-box img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.faq-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.8;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d3436;
}

.thanks-message {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 16px;
}

.thanks-service {
    font-size: 17px;
    color: #6c5ce7;
    font-weight: 600;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d3436;
}

.thanks-steps {
    text-align: left;
    list-style: none;
    margin-bottom: 40px;
}

.thanks-steps li {
    font-size: 16px;
    color: #636e72;
    padding: 10px 0 10px 32px;
    position: relative;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #6c5ce7;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #6c5ce7;
    padding: 14px 32px;
    border: 2px solid #6c5ce7;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #6c5ce7;
    color: #ffffff;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2d3436;
}

.legal-content h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3436;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3436;
}

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

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

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

.legal-content em {
    color: #b2bec3;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2d3436;
}

.cookie-table td {
    font-size: 15px;
    color: #636e72;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-content-card {
        padding: 32px;
    }

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

    .narrative-grid,
    .insight-flex,
    .philosophy-flex,
    .service-content-wrap,
    .contact-layout {
        flex-direction: column;
    }

    .collections-cards {
        flex-direction: column;
    }

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

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

    .cta-box,
    .cta-box-secondary {
        padding: 40px 24px;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-content {
        padding: 40px 24px;
    }
}