body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.banner {
    background-color: #333;
    color: white;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.banner h1 {
    margin: 0;
    padding: 20px 0;
    font-size: 28px;
}

.banner img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    opacity: 0.8;
}

.slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: yellow;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000;
}

.features {
    display: flex;
    justify-content: space-around;
    margin: 30px;
}

.feature-box {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    width: 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #333;
}

.cta {
    background-color: #28a745;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.cta h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.cta button {
    background-color: white;
    color: #28a745;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

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