* {
    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;
}

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

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #7c5295;
}

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

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

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a2e;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

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

.hero-overlay p {
    font-size: 20px;
    opacity: 0.9;
}

.intro-story {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background: #f9f9f9;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    line-height: 1.3;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.story-visual {
    flex: 1;
    background-color: #e0e0e0;
}

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

.problem-cards {
    padding: 80px 5%;
    background: white;
}

.problem-cards h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.cards-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f4f9;
    border-left: 4px solid #7c5295;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #7c5295;
}

.problem-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.insight-section {
    padding: 80px 5%;
    background: #1a1a2e;
    color: white;
}

.insight-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.insight-wrapper img {
    flex: 1;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    background-color: #2c3e50;
}

.benefits-reveal {
    padding: 80px 5%;
    background: white;
}

.benefits-reveal h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a2e;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 45%;
    min-width: 300px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #7c5295;
}

.benefit-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.trust-signals {
    padding: 80px 5%;
    background: #f8f4f9;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a2e;
}

.testimonials-inline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: white;
    border-left: 4px solid #7c5295;
}

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

.testimonial span {
    font-size: 15px;
    font-weight: 600;
    color: #7c5295;
}

.services-preview {
    padding: 80px 5%;
    background: white;
}

.services-preview h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px 20px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 16px;
    padding: 0 20px 15px 20px;
    color: #4a4a4a;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #7c5295;
    padding: 10px 20px;
}

.cta-button {
    margin: 0 20px 20px 20px;
    padding: 14px 28px;
    background: #7c5295;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #5d3a73;
}

.cta-section {
    padding: 80px 5%;
    background: #7c5295;
    color: white;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    padding: 18px 40px;
    background: white;
    color: #7c5295;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-primary:hover {
    transform: scale(1.05);
}

.form-section {
    padding: 80px 5%;
    background: #f9f9f9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
}

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

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

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

.submit-button {
    width: 100%;
    padding: 16px;
    background: #7c5295;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #5d3a73;
}

.disclaimer-section {
    padding: 50px 5%;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 5% 30px 5%;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #7c5295;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    color: white;
    padding: 20px 5%;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
}

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

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

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

.cookie-accept {
    background: #7c5295;
    color: white;
}

.cookie-accept:hover {
    background: #5d3a73;
}

.cookie-reject {
    background: #f8f9fa;
    color: #2c3e50;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

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

    .intro-story {
        flex-direction: column;
    }

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

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

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

    .testimonials-inline {
        flex-direction: column;
    }

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

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

    .form-container {
        padding: 30px 20px;
    }
}
