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

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

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

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

.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #8b2e3c;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #666;
    border-left: 2px solid #ddd;
    padding-left: 15px;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #8b2e3c;
    color: white;
}

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

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

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

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 46, 60, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #8b2e3c;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #8b2e3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 46, 60, 0.3);
}

.story-section {
    padding: 120px 0;
    background: #f9f9f9;
}

.story-intro {
    text-align: center;
    margin-bottom: 80px;
}

.story-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
    line-height: 1.3;
}

.story-intro p {
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

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

.reveal-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.reveal-text {
    flex: 1;
}

.reveal-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b2e3c;
}

.reveal-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.insight-visual {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.insight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
}

.insight-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.insight-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 80px 20px;
}

.insight-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.insight-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

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

.benefits-stacked {
    padding: 120px 0;
    background: white;
}

.section-heading {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c2c2c;
}

.benefit-block {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.benefit-block.reverse {
    flex-direction: row-reverse;
}

.benefit-visual {
    flex: 1;
    background-color: #f5f5f5;
}

.benefit-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.benefit-info {
    flex: 1;
}

.benefit-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b2e3c;
}

.benefit-info p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

.trust-section {
    padding: 100px 0;
    background: #f4f4f4;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.testimonial-card {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #8b2e3c;
}

.testimonial-card blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

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

.collections-reveal {
    padding: 120px 0;
    background: white;
}

.section-heading-center {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.collections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.collection-card {
    width: calc(50% - 20px);
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

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

.collection-details {
    padding: 30px;
}

.collection-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #8b2e3c;
}

.collection-details p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: #8b2e3c;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #6d2330;
}

.form-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
}

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

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

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

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

.form-consent {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.checkbox-label a {
    color: #8b2e3c;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #8b2e3c;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8b2e3c;
}

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

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

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

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

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

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #8b2e3c;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.btn-back {
    display: inline-block;
    padding: 15px 40px;
    background: #8b2e3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #6d2330;
    transform: translateY(-2px);
}

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #8b2e3c, #6d2330);
    color: white;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

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

.content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    margin-top: 50px;
    color: #2c2c2c;
}

.content-section h3 {
    font-size: 26px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #8b2e3c;
}

.content-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #8b2e3c;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
}

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

.service-item {
    width: calc(50% - 20px);
    background: #fafafa;
    padding: 40px;
    border-left: 4px solid #8b2e3c;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #8b2e3c;
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-reveal {
        flex-direction: column;
    }

    .benefit-block,
    .benefit-block.reverse {
        flex-direction: column;
    }

    .collection-card {
        width: 100%;
    }

    .collections-grid {
        gap: 30px;
    }

    .service-item {
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        font-size: 14px;
    }

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

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