.hero {
    text-align: center;
    padding: 40px 20px;
}

.feature-section {
    padding: 40px 20px;
    text-align: center;
}

.feature-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.feature-section p {
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.feature-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.image-gallery img {
    max-width: 45%;
    min-width: 300px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.store-button button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
    color: var(--text-light);
    background-color: transparent;
    border: 2px solid var(--text-light);
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.store-button button:hover {
    background-color: var(--transp-background);
}

.store-button:nth-child(1) i {
    color: #FF7139; /* Firefox */
}

.store-button:nth-child(2) i {
    color: #FFFD72; /* Google */
}

.download-now {
    text-align: center;
    padding: 40px 20px;
}