* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.navbar {
    background-color: #2e2e2e;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #ffa500;
}

.logo {
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e65c00;
}

.features {
    padding: 30px 20px;
    background-color: #f9f9f9;
}

.features h3 {
    margin-bottom: 15px;
}

.features ul {
    padding-left: 20px;
}

.image-section {
    text-align: center;
    padding: 20px;
}

.rounded-img {
    width: 250px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

footer {
    background-color: #2e2e2e;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}
