body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh; /* Change from height to min-height */
    text-align: center;
    display: flex;
    flex-direction: column; /* Add this */
    align-items: center;
}

.container {
    max-width: 800px; /* Increase max-width */
    width: 90%; /* Add this to ensure responsiveness */
    padding: 40px 20px; /* Increase padding */
    margin: auto; /* Center the container */
}

.why-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

ul.features {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
    text-align: left; /* Align text to the left for better readability */
}

ul.features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
}

ul.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #25D366; /* WhatsApp green */
    font-weight: bold;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

p {
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: 1em;
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 1em;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #128C7E; /* Darker shade of WhatsApp green */
    color: #fff;
}


footer {
    margin-top: 2em;
    font-size: 0.8em;
    color: #666;
}

ul {
    padding-left: 20px;
    margin-top: 10px;
}

li {
    margin-bottom: 10px;
}