body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}

.cta-button {
    background-color: #fff;
    color: #4e54c8;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.features, .benefits {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

h2 {
    text-align: center;
    color: #4e54c8;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #4e54c8;
}

.benefits ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.benefits li {
    font-size: 1.1em;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.benefits li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #4e54c8;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
