body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background color */
    color: #333; /* Dark text color for better contrast */
}

header {
    background-color: #007bff; /* Blue header */
    color: white;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between; /* Space logo and nav items */
    align-items: center;
    max-width: 960px; /* Set a max width for the content */
    margin: 0 auto;  /* Center the content */
    padding: 0 20px; /* Add some padding */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-image {
    height: 100px; /* Adjust as needed */
    vertical-align: middle;
    margin-right: 10px;
}

.hero {
    display: flex;
    align-items: center;  /* Vertically align items */
    padding: 4rem 20px;
    max-width: 960px;
    margin: 0 auto;
}

.hero-content {
    flex: 1; /* Take up available space */
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6; /* Improve readability */
}

.download-buttons {
    display: flex;
}

.app-store-link, .play-store-link {
    margin-right: 1rem;
}

.app-store-link img, .play-store-link img {
    width: 150px; /* Adjust button size as needed */
}

.hero-image {
    flex: 1;
    text-align: center; /* Center the image */
}
.hero-image img {
    max-width: 100%;  /* Make image responsive */
    height: auto;
}

.features {
    padding: 4rem 20px;
    background-color: white;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.feature {
    width: 30%; /* Adjust width for desired number of columns */
    margin-bottom: 2rem;
    text-align: center;
}

.feature img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature {
        width: 45%; /* Two columns on smaller screens */
    }
    .hero {
        flex-direction: column; /* Stack hero content and image */
        text-align: center;
    }
    .hero-image {
        margin-top: 2rem;
    }
    .download-buttons {
        flex-direction: column; /* Stack buttons vertically */
    }
    .app-store-link, .play-store-link {
        margin: 0.5rem 0; /* Add margin between buttons */
    }
}

@media (max-width: 480px) {
    .feature {
        width: 100%; /* One column on very small screens */
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}