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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.main-nav {
    background: #1a1a1a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-notice {
    color: #95a5a6;
    font-size: 12px;
    font-weight: 500;
}

.hero-full {
    position: relative;
    height: 85vh;
    background: #000;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-overlay h1 {
    font-size: 56px;
    color: #fff;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 700px;
}

.story-intro {
    padding: 120px 24px;
    background: #f8f9fa;
}

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

.narrow-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #34495e;
    line-height: 1.8;
}

.problem-section {
    padding: 100px 24px;
    background: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

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

.insight-reveal {
    padding: 120px 24px;
    background: #2c3e50;
    color: #fff;
}

.insight-reveal .narrow-content h2 {
    color: #fff;
}

.insight-reveal .narrow-content p {
    color: #ecf0f1;
}

.features-stacked {
    padding: 80px 24px;
    background: #fff;
}

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

.feature-block.left-align {
    flex-direction: row;
}

.feature-block.right-align {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-content p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
}

.feature-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.testimonials-inline {
    padding: 100px 24px;
    background: #f8f9fa;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 32px;
    border-left: 4px solid #4a90e2;
}

.testimonial-card p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.collections-reveal {
    padding: 100px 24px;
    background: #fff;
}

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

.collections-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.collections-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.collection-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.collection-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 300px;
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

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

.collection-item h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #2c3e50;
    font-weight: 700;
}

.collection-item p {
    font-size: 16px;
    color: #34495e;
    margin: 0 24px 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.collection-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 24px 20px;
    display: block;
}

.btn-select {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #4a90e2;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #357abd;
}

.form-section {
    padding: 100px 24px;
    background: #ecf0f1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    background: #fff;
    color: #2c3e50;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

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

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

.disclaimer-content p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 24px 24px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

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

    .feature-block.left-align,
    .feature-block.right-align {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 16px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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