body {
    font-family: Arial, sans-serif;
    background-color: #00a4d3; /* Light blue background */
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    padding: 50px;
}

.logo {
    width: 300px;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff; /* White text */
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    width: 30%;
    padding: 20px;
    background-color: #ffb74d; /* Vibrant orange */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #333; /* Dark text for contrast */
    text-align: center;
}

.icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.cta {
    font-size: 1.2em;
    color: #fff;
    background-color: #ff6347; /* Tomato red */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.cta:hover {
    background-color: #ff4500; /* Darker orange for hover effect */
}

.footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #fff; /* White text */
}
