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


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.container {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    height: 40px;
    margin-right: 10px;
}

.main-nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.hero {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #FFFFFF;
}

.hero-content {
    margin-bottom: 30px;
}


.app-info {
    text-align: center;
}

.app-icon-large {
    height: 80px;
    margin-bottom: 15px;
}


.app-store-link .app-store-img {
    width: 130px;
    margin-top: 15px;
}

.iphone-screen {
    max-width: 40%; /* Significantly reduced size */
    border: 4px solid #DCDCDC;
    border-radius: 20px;
}

.main-footer p {
    color: #5D5A5A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .app-store-link .app-store-img {
        width: 110px;
    }

    .iphone-screen {
        max-width: 60%; /* Further reduced size for mobile */
    }
}

.screenshots-container {
    display: flex;
    overflow-x: auto;
    flex: 1;
    /* padding-top: 70px; */
    /* padding-bottom: 70px; */
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* Hides scrollbar in IE and Edge */
    scrollbar-width: none; /* Hides scrollbar in Firefox */
    justify-content: center; /* Aligns screenshots to the left */
    flex-wrap: nowrap; /* Ensures screenshots stay in one row */
}

/* Hides scrollbars across all browsers */
.screenshots-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

.screenshot {
    flex: 0 0 auto; /* Prevents images from shrinking or growing */
    width: 300px; /* Adjust the width as needed */
    height: auto;
    border-radius: 10px; /* Adds rounded corners */
    transition: transform 0.3s;
    border: 1px solid #D3E4F1;
    cursor: pointer; /* Adds a pointer cursor for interactivity */
}


.screenshot:hover {
    /* transform: scale(1.3); */
}


.screenshots-container::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, and Opera */
}

.app-store-link {
    margin-top: 20px;
    display: inline-block;
}

.app-store-img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFFFF; /* Light blue background */
    color: #333333; /* Neutral text color */
    line-height: 1.5;
}

.main-header {
    background-color: #FFFFFF;
    padding: 10px 0;
    border-bottom: 1px solid #D3E4F1; /* Light blue-gray border */
}

.app-name {
    font-size: 22px;
    font-weight: 600;
    color: black; /* Vibrant blue for app name */
}

.main-nav a {
    text-decoration: none;
    color: #5D5A5A;
    font-weight: 600;
}


.hero-title {
    font-size: 28px;
    font-weight: 600;
    color: black;
}

.hero-description {
    font-size: 16px;
    margin: 15px 0;
    color: #5D5A5A;
}

.main-footer {
    background-color: #F4F4F4; /* Light gray background for the footer */
    padding: 20px 0;
    text-align: center;
    width: 100%;
    border-top: 1px solid #D3E4F1; /* Optional: Subtle border for separation */
}
