* {
    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: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    padding: 80px 30px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 42px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231,76,60,0.4);
}

.hero-image {
    flex: 1;
    background: #5a67d8;
}

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

.problem-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a202c;
    line-height: 1.3;
}

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

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

.story-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.story-image {
    flex: 1;
    background: #edf2f7;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.insight-block {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.insight-block h4 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #ffffff;
}

.insight-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #e2e8f0;
}

.testimonial-section {
    padding: 90px 30px;
    background: #f7fafc;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

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

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

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

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

.benefits-list {
    margin-top: 50px;
}

.benefit-item {
    margin-bottom: 44px;
    padding-left: 28px;
    border-left: 3px solid #e74c3c;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a202c;
}

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

.proof-section {
    padding: 90px 30px;
    background: #edf2f7;
}

.proof-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.proof-container img {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background: #cbd5e0;
}

.proof-text {
    flex: 1;
}

.proof-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.proof-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.proof-text a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.proof-text a:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 100px 30px;
    background: #ffffff;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e2e8f0;
}

.service-card h4 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #4a5568;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 12px 24px;
}

.select-service {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #5a67d8;
}

.form-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

#contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

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

.disclaimer-section {
    padding: 60px 30px;
    background: #f8f9fa;
}

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

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

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references {
    padding-left: 20px;
}

.references li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background: #718096;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4a5568;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.thanks-content .selected-service {
    background: #f7fafc;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #e74c3c;
}

.contact-page {
    padding: 80px 30px;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
}

.info-item {
    margin-bottom: 30px;
    padding: 24px;
    background: #f7fafc;
    border-radius: 6px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.info-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5568;
}

.legal-page {
    padding: 80px 30px;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

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

    .hero-subtext {
        font-size: 17px;
    }

    .story-grid,
    .proof-container {
        flex-direction: column;
    }

    .testimonial-container {
        flex-direction: column;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}