/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f9fafb;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

p {
    font-size: 1.1rem;
    color: #4a5568;
}

a {
    text-decoration: none;
    color: #3182ce;
    transition: color 0.3s ease;
}

a:hover {
    color: #63b3ed;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

header .logo {
    width: 120px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #3182ce;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #63b3ed;
    transform: translateY(-3px);
}

/* Features Section */
#features {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

#features h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.15);
}

.feature img {
    width: 60px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
}

/* Testimonials Section */
#testimonials {
    padding: 60px 20px;
    background-color: #f9fafb;
    text-align: center;
}

#testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonial {
    display: inline-block;
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial p:last-child {
    font-weight: 600;
    color: #3182ce;
}

/* CTA Section */
#cta {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

#cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

footer a {
    color: #63b3ed;
}

footer a:hover {
    color: #90cdf4;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 100%;
    }

    #cta h2 {
        font-size: 1.8rem;
    }

    #cta p {
        font-size: 1rem;
    }
}