/* General reset */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    margin-top: 1rem;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

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

header nav ul li a.active {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 2rem;
    background: #f4f4f4;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features, .testimonials, .services {
    padding: 2rem;
    text-align: center;
    background: #fff;
}

.features .feature, .services .service {
    display: inline-block;
    width: 30%;
    padding: 1rem;
    margin: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s;
}

.features .feature:hover, .services .service:hover {
    transform: scale(1.05);
}

.testimonials .testimonial {
    margin: 1rem auto;
    max-width: 600px;
    font-style: italic;
}

.cta {
    text-align: center;
    padding: 2rem;
    background: #007bff;
    color: white;
}

.cta .btn {
    background: white;
    color: #007bff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: white;
}
.team {
    padding: 2rem;
    background: #f9f9f9;
    text-align: center;
}

.team h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-member {
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: #007bff;
}

.team-member p {
    margin: 0.5rem 0;
}

.team-member a {
    color: #007bff;
    text-decoration: none;
}

.team-member a:hover {
    text-decoration: underline;
}
