body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f4f4f4;
}

.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.text-panel {
    flex: 1;
    padding: 20px;
    max-width: 600px;
}

.image-panel {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

h1, .features h2 {
    color: #0084ff;
}

p, li {
    color: #333;
}

button {
    background: #0084ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #0056b3;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0084ff;
    color: white;
}

