body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header.hero {
    background: url('img/banner.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

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

.btn {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.features {
    padding: 40px 20px;
    text-align: center;
}

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

.feature {
    max-width: 300px;
    text-align: center;
}

.feature img {
    max-width: 100%;
    border-radius: 10px;
}

.cta {
    background: #ff6600;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}