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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #ff6b35;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 90vh;
    margin-top: 0;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 20px;
    background-color: var(--white);
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.3;
}

.story-narrow p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.problem-amplification {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 600;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    background-color: #ddd;
}

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

.insight-section {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.insight-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.insight-card {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.trust-building {
    padding: 100px 20px;
    background-color: var(--white);
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial-item {
    padding: 40px;
    border-left: 4px solid var(--accent-color);
    background-color: var(--light-bg);
}

.testimonial-item blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonial-item cite {
    font-size: 16px;
    color: var(--gray);
    font-style: normal;
}

.collections-reveal {
    padding: 120px 20px;
    background-color: var(--light-bg);
}

.collections-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.collections-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.collections-header p {
    font-size: 20px;
    color: var(--gray);
}

.collections-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.collection-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.collection-info {
    padding: 30px;
}

.collection-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.collection-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.collection-info .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.select-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-btn:hover {
    background-color: var(--accent-color);
}

.order-form-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--light-bg);
    border-radius: 12px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 80px 20px;
    background-color: #fff8e1;
    border-top: 2px solid #ffd54f;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #5d4037;
}

.references-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.references-container {
    max-width: 900px;
    margin: 0 auto;
}

.references-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-header {
    padding: 180px 20px 80px;
    text-align: center;
    background-color: var(--light-bg);
}

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

.page-header p {
    font-size: 20px;
    color: var(--gray);
}

.legal-content {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.legal-container h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-container p,
.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul,
.legal-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

.contact-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
}

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

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

.thanks-section {
    padding: 180px 20px 100px;
    background-color: var(--white);
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2ecc71;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.order-summary {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-next-steps ol {
    margin-left: 25px;
    font-size: 17px;
    line-height: 1.8;
}

.thanks-next-steps li {
    margin-bottom: 15px;
}

.back-home-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-home-btn:hover {
    background-color: var(--accent-color);
}

.services-detail {
    padding: 80px 20px;
    background-color: var(--white);
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
}

.service-description h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    font-weight: 600;
}

.service-description ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 10px;
}

.cta-link {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #e55a2b;
}

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

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

@media (max-width: 1024px) {
    .split-content,
    .contact-container,
    .service-detail-item {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

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

    .collection-card {
        flex: 1 1 calc(50% - 20px);
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        top: 20px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .story-narrow h2,
    .collections-header h2 {
        font-size: 32px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}