/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #007BFF;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header .highlight {
    color: #FFD700;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #E6F7FF;
    padding: 40px;
    text-align: left;
}

.hero .content {
    max-width: 50%;
}

.hero h2 {
    color: #007BFF;
    font-size: 2.5rem;
}

.hero .btn {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.hero-img {
    max-width: 40%;
    border-radius: 10px;
}

section {
    padding: 40px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    color: #007BFF;
}
.illustration{
    max-width: 40%;
    border-radius: 10px;
}


.services {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service {
    background: #F9F9F9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 30%;
}

.service img {
    width: 100%;
    border-radius: 10px;
}

footer {
    background: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer p {
    margin: 0;
}
