* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #1a1f35 0%, #2a1f3d 100%);
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #a8b2d1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-primary, .cta-secondary {
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
}

.features, .reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.feature-card, .reason-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover, .reason-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon, .reason-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3, .reason-item h3 {
    margin-bottom: 15px;
    color: #ffd93d;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 0;
    text-align: center;
}

.stat-item h4 {
    color: #a8b2d1;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd93d;
}

.why-choose-us, .testimonials, .faq {
    padding: 60px 0;
}

.why-choose-us h2, .testimonials h2, .faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #ffd93d;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #a8b2d1;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #ffd93d;
    margin-bottom: 10px;
}

.footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffd93d;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #a8b2d1;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a8b2d1;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #ffffff;
}

.icp-link {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icp-link:hover {
    color: #ffffff;
}

.mobile-footer {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        flex-direction: column;
        align-items: center;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .nav-link {
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        margin-bottom: 10px;
    }

    .features, .reasons, .stats, .testimonial-container {
        grid-template-columns: 1fr;
    }

    .feature-card, .reason-item, .stat-item, .testimonial-card, .faq-item {
        margin-bottom: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .mobile-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #000000;
        padding: 15px 20px;
        z-index: 1000;
    }

    .footer-text {
        color: white;
        font-size: 14px;
    }

    .footer-button {
        background-color: #ff4444;
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
    }

    .footer-button:hover {
        background-color: #ff6666;
    }
}

img {
    max-width: 100%;
    height: auto;
}

