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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

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

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

.floating-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-story {
    margin-top: 0;
}

.hero-image {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-style: italic;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: normal;
    line-height: 1.4;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.problem-amplification {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.insight-section {
    padding: 5rem 2rem;
}

.full-width-bg {
    padding: 4rem 2rem;
}

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

.centered-insight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: normal;
}

.centered-insight > p {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #4a4a4a;
}

.insight-cards {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #8b7355;
}

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

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

.asymmetric-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.trust-content {
    flex: 1.3;
}

.trust-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.trust-content img {
    width: 100%;
    border-radius: 8px;
}

.trust-testimonials {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: #f9f7f5;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.collections-reveal {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.collection-grid {
    max-width: 1300px;
    margin: 3rem auto 0;
    display: flex;
    gap: 2.5rem;
}

.collection-item {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.collection-info {
    padding: 2rem;
}

.collection-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.collection-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-select {
    padding: 0.9rem 1.8rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-select:hover {
    background-color: #6d5a42;
}

.pricing-reveal {
    padding: 5rem 2rem;
}

.centered-pricing {
    max-width: 1200px;
    margin: 0 auto;
}

.centered-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.centered-pricing > p {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    color: #4a4a4a;
}

.pricing-cards {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.price-card {
    flex: 1;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    text-align: center;
}

.price-card.featured {
    border-color: #8b7355;
    transform: scale(1.05);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.price-detail {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    color: #8b7355;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-desc {
    font-size: 0.95rem;
    color: #666;
}

.price-includes {
    list-style: none;
    text-align: left;
}

.price-includes li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.price-includes li:last-child {
    border-bottom: none;
}

.cta-form-section {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: normal;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #d0d0d0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #3a3a3a;
    color: #ffffff;
}

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

.btn-submit {
    padding: 1.2rem 2rem;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #8b7355;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-left: 3px solid #8b7355;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .split-layout,
    .asymmetric-layout,
    .collection-grid,
    .pricing-cards,
    .insight-cards {
        flex-direction: column;
    }

    .price-card.featured {
        transform: none;
    }

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