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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f4f4f4;
    --dark: #0f0f1e;
    --text: #333;
    --text-light: #666;
    --border: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: var(--accent);
    color: #fff;
}

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

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

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

.header {
    background: var(--primary);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.ad-disclosure {
    font-size: 12px;
    color: #aaa;
    padding: 5px 10px;
    border: 1px solid #444;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark);
}

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

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

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.intro-story {
    padding: 80px 20px;
    background: var(--light);
}

.intro-story h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary);
}

.intro-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-section {
    padding: 80px 0;
    background: #fff;
}

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

.split-image {
    flex: 1;
    min-width: 300px;
    background: var(--light);
}

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

.split-content {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.split-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 24px;
}

.solution-intro {
    padding: 80px 20px;
    background: var(--secondary);
    color: #fff;
}

.solution-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.solution-intro p {
    font-size: 18px;
    line-height: 1.8;
}

.services-visual {
    padding: 80px 20px;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--primary);
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--primary);
}

.service-card p {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    padding: 15px 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--accent);
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: var(--secondary);
}

.trust-elements {
    padding: 80px 20px;
    background: #fff;
}

.trust-elements h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary);
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 30px;
    background: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial .author {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: bold;
}

.benefits-reveal {
    padding: 80px 20px;
    background: var(--light);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary);
}

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

.benefit-block {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.form-section {
    padding: 80px 20px;
    background: #fff;
}

.form-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.service-display {
    background: var(--secondary);
    color: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
    display: none;
}

.service-display.active {
    display: block;
}

.service-display h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.service-display .display-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: var(--light);
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 4px;
    background: #fff;
}

.footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .hero-subtitle {
        font-size: 16px;
    }

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

    .service-grid {
        flex-direction: column;
        align-items: center;
    }

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