* {
    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: #222;
    background: #f8f9fa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: white;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: #555;
    color: white;
}

.btn-reject:hover {
    background: #666;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f5f5f5;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    margin-bottom: 60px;
}

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

.hero-text {
    flex: 1;
    color: white;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-hero {
    background: white;
    color: #667eea;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.intro-section {
    padding: 60px 20px;
}

.intro-card {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

.problem-section {
    padding: 60px 20px;
    background: #f0f4f8;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #e74c3c;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #e74c3c;
}

.problem-card p {
    font-size: 16px;
    color: #555;
}

.insight-section {
    padding: 80px 20px;
}

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

.insight-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.services-overview {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #2ecc71;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2ecc71;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

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

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

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-price {
    padding: 0 24px 20px;
    font-size: 28px;
    font-weight: 800;
    color: #1a73e8;
}

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #1557b0;
}

.trust-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a73e8 0%, #004db3 100%);
    color: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 18px;
    opacity: 0.95;
}

.testimonials-section {
    padding: 80px 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 32px;
    border-left: 5px solid #2ecc71;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

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

.form-card {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff9e6;
}

.disclaimer-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px;
    background: white;
    border-radius: 8px;
    border: 2px solid #f39c12;
}

.disclaimer-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d68910;
}

.disclaimer-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

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

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

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

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: #ccc;
    line-height: 1.8;
}

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

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

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

    .nav-links {
        display: none;
    }

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

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

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

    .form-card {
        padding: 32px 24px;
    }
}