/* styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #A7DDF2;
    color: #1E3340;
}

header {
    background: #2C3E50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    background: #1E3340;
    color: black;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

.btn {
    background: #F2A649;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #e59436;
}

main {
    padding: 20px;
}

.benefits, .features, .testimonials {
    margin: 50px 0;
}

.benefits h2, .features h2, .testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.benefit-cards, .feature-cards, .testimonial-cards, .contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.benefit-card, .feature-card, .testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 600px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.benefit-card:hover, .feature-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
}

.benefit-card img, .feature-card img, .testimonial-card img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid #4E7DA6;
}

.contact {
    background: #F2A649;
    padding: 20px;
    text-align: center;
    color: white;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .benefit-cards, .feature-cards, .testimonial-cards, .contact-cards {
        flex-direction: column;
        align-items: center;
    }
}
