* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #eef2f3;
    color: #333;
}

.header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header h1 {
    font-size: 2.5rem;
}

.features {
    background-color: #f8f9fc;
    padding: 50px 20px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section:nth-child(even) {
    flex-direction: row-reverse;
}

.text {
    flex: 1;
    padding: 20px;
}

.text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #6a11cb;
}

.text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.image {
    flex: 1;
    padding: 20px;
}

.image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Add some responsive styling */
@media (max-width: 768px) {
    .section {
        flex-direction: column;
    }

    .text, .image {
        padding: 10px;
    }
}
