/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    margin: 0 auto;
}

/* Header styles */
header {
    background-color: #D1EBB2;
    padding: 40px 0;
    text-align: center;
}

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

/* Feature section styles */
.features {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    font-size: 14px;
}

@media (min-width: 992px) { /* Adjusts for desktop devices */
    .features {
        max-width: 900px; /* Set your desired max-width */
        margin: 0 auto; /* Centers the section */
    }
}

.feature-card {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.feature-card .title {
    font-size: 18px;
    font-weight: bold;
}

.feature-card .description {
    font-size: 14px;
    font-weight: normal;
    color: #333;
}

/* CTA section styles */
.cta {
    background-color: #FFDE59;
    padding: 40px 0;
    text-align: center;
}

.download-buttons {
    margin-top: 20px;
}

.google-play-button {
    display: inline-block;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
