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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-cookie-accept {
    background: #4CAF50;
    color: white;
}

.btn-cookie-accept:hover {
    background: #45a049;
}

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

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

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 12px;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
    font-weight: 300;
}

.intro-flow {
    padding: 100px 20px;
    background: #f9f9f9;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #333;
}

.intro-narrow p {
    margin-bottom: 30px;
}

.visual-story {
    display: flex;
    flex-direction: column;
    background: white;
}

.story-image-wide {
    width: 100%;
    background: #e0e0e0;
}

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

.story-text-offset {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.story-text-offset h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.insight-section {
    padding: 100px 20px;
    background: #fafafa;
}

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

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

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

.insight-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.insight-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: #e8e8e8;
}

.insight-card h3 {
    padding: 30px 30px 15px;
    font-size: 24px;
    font-weight: 600;
}

.insight-card p {
    padding: 0 30px 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.trust-build {
    padding: 100px 20px;
    background: white;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

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

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

.collection-preview {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

.collection-preview h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.collection-item {
    flex: 1;
    min-width: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #2c2c2c;
}

.collection-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-info {
    padding: 40px;
}

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

.collection-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ccc;
}

.btn-text {
    display: inline-block;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: #ff6b5a;
    border-bottom-color: #ff6b5a;
}

.services-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

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

.services-header p {
    font-size: 19px;
    opacity: 0.9;
}

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-block {
    flex: 1;
    min-width: 320px;
    background: white;
    color: #1a1a1a;
    padding: 50px 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-block.featured {
    background: #1a1a1a;
    color: white;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.85;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 15px;
}

.service-block.featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-price {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #e74c3c;
}

.service-block.featured .service-price {
    color: #ff6b5a;
}

.btn-select-service {
    width: 100%;
    padding: 18px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.service-block.featured .btn-select-service {
    background: white;
    color: #1a1a1a;
}

.service-block.featured .btn-select-service:hover {
    background: #f5f5f5;
}

.form-section {
    padding: 100px 20px;
    background: white;
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
}

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

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

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

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

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

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

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

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

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

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

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

    .collection-item {
        min-width: 100%;
    }

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

    .service-block.featured {
        transform: scale(1);
    }
}