body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #F5F5DC; /* Beige background from the app */
    color: #1D3557; /* Dark blue from the app theme */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background-color: #F4A261; /* Orange from the app theme */
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 10px 0 30px;
}

.app-store-button {
    background-color: white;
    color: #F4A261;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s;
}

.app-store-button:hover {
    transform: scale(1.05);
}

.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #e6e6e6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
} 