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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
    background: #f8f9fa;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    background: #e9ecef;
}

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

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #2c3e50;
    color: #ffffff;
}

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

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.story-section h2,
.problem-section h2,
.insight-section h2,
.trust-section h2,
.testimonials-section h2,
.reveal-section h2,
.form-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.story-section p,
.problem-section p,
.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

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

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

.cta-inline {
    margin-top: 40px;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.features-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.feature-block {
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #3498db;
}

.feature-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-block p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.testimonial {
    padding: 35px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #3498db;
    font-size: 15px;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    text-align: center;
}

.collections-stack {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.collection-card {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    overflow: hidden;
}

.collection-card:nth-child(even) {
    flex-direction: row-reverse;
}

.collection-image {
    flex: 1;
    background: #e9ecef;
}

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

.collection-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collection-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.btn-select {
    padding: 14px 35px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    background: #ffffff;
}

.inquiry-form {
    margin-top: 40px;
}

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

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

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

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

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

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
}

.form-consent a {
    color: #3498db;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
}

.disclaimer-section {
    padding: 50px 40px;
}

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

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

.btn-cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #7f8c8d;
}

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

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e9ecef;
    min-height: 300px;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 20px;
}

.about-content {
    font-size: 17px;
    line-height: 1.8;
}

.about-content h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    width: 100%;
    margin: 40px 0;
    background: #e9ecef;
}

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

.legal-content {
    font-size: 15px;
    line-height: 1.8;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #555;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-service {
    font-size: 24px;
    font-weight: 600;
    color: #3498db;
    margin: 30px 0;
}

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

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

    .hero-content h1 {
        font-size: 32px;
    }

    .split-content,
    .collection-card,
    .service-item {
        flex-direction: column;
    }

    .collection-card:nth-child(even),
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .container-narrow,
    .container-wide {
        padding: 50px 20px;
    }
}