body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    scroll-behavior: smooth;
}

header {
    background-color: black;
    color: white;
    text-align: center;
    padding: 2em 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
    position: relative;
    top: -15px;
}

.logo-name {
    display: inline;
    position: relative;
    top: -13px;
    left: -5px;
    font-size: 18px;
    font-weight: bold;
}

.logo {
    font-size: 1.5em;
    color: #fff;
}

.nav-toggle {
    cursor: pointer;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: flex-end;
    z-index: 1000;
    padding: 2em;
}

.nav-overlay.active {
    display: flex;
}

.nav-links-overlay {
    list-style: none;
    text-align: left;
    position: absolute;
    bottom: 10em;
    left: -5px;
    display: flex;
    flex-direction: column;
}

.nav-links-overlay li {
    margin: 1em 0;
    display: flex;
    align-items: center;
}

.nav-links-overlay a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.nav-links-overlay i {
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.5em; /* Make sure this matches the font size */
}

/* Your existing CSS */

.header-content {
    padding: 2em 1em;
}

.download-buttons {
    margin-top: 1em;
}

.download-buttons a {
    text-decoration: none;
    color: white;
    padding: 0.5em 1em;
    border-radius: 5px;
    margin: 0 0.5em;
    display: inline-block;
}

.btn-app-store {
    background-color: #ff5500;
}

.btn-play-store {
    background-color: #333;
}

section {
    padding: 2em 1em;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1em;
}

/* Update max-width for feature items on smartphones */
@media (max-width: 768px) {
    .feature-item {
        max-width: none !important; /* Remove max-width */
        margin: 0.5em; /* Add margin for spacing */
    }
}

/* Add card-like styling to feature items */
.feature-item {
    max-width: 200px;
}

.feature-item i {
    font-size: 2em;
    color: #ff5500;
}

.store-slideshow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}

.store-slideshow img {
    width: 100%;
    height: auto;
    border-radius: 25px;
}

.store-title {
    font-size: 1.5em;
    color: #ff5500;
    margin-top: 1em;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: black;
        position: absolute;
        top: 60px;
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
    }

    .store-slideshow {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .store-slideshow img {
        flex: 0 0 auto;
        width: 100%;
        scroll-snap-align: start;
    }
}

footer {
    background-color: #111;
    color: #fff;
    padding: 2em 1em;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.social-media {
    display: flex;
    gap: 1em;
}

.social-media a {
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ff5500;
}

.address,
.copyright {
    margin: 0;
    font-size: 0.9em;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .address,
    .copyright {
        font-size: 1em;
    }
}
