* {
    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;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    min-height: 620px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 30px;
}

.hero-text {
    flex: 1;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.story-section {
    padding: 100px 30px;
    background: #f8fafc;
}

.story-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #1a202c;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

.problem-section {
    padding: 90px 30px;
    background: #ffffff;
}

.problem-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: #fff5f5;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #f56565;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #c53030;
    font-weight: 600;
}

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

.insight-section {
    padding: 100px 30px;
    background: #1a202c;
    color: #ffffff;
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background: #2d3748;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.benefits-section {
    padding: 100px 30px;
    background: #f7fafc;
}

.benefits-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.benefits-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

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

.testimonials-section {
    padding: 100px 30px;
    background: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #edf2f7;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 5px solid #4299e1;
}

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

.testimonial-author {
    font-size: 15px;
    color: #4a5568;
    font-weight: 600;
}

.services-showcase {
    padding: 100px 30px;
    background: #f7fafc;
}

.services-showcase h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background: #e2e8f0;
    overflow: hidden;
}

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

.service-content {
    padding: 30px 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 600;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px 25px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #1e40af;
}

.form-section {
    padding: 100px 30px;
    background: #ffffff;
}

.form-container {
    max-width: 680px;
    margin: 0 auto;
    background: #f7fafc;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 700;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 35px;
    font-size: 17px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 15px;
}

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

.disclaimer-section {
    padding: 60px 30px;
    background: #fef5e7;
    border-top: 3px solid #f39c12;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #d68910;
    font-weight: 600;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #5d4e37;
}

.main-footer {
    background: #1a202c;
    color: #ffffff;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p,
.footer-column a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #38a169;
}

.cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #2d3748;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background: #f7fafc;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #1e40af;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 30px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 30px;
    background: #ffffff;
}

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

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-wrapper li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-info {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-info p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-info strong {
    color: #2d3748;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 50px 20px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

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

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

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