body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Ensure other elements inherit the same font */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button {
    font-family: 'Roboto', sans-serif;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 50px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


.header-left {
    display: flex;
    align-items: center;
}

.header-left img.google-logo {
    height: 25px;
    margin-right: 20px;
}

.header-left nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.header-left nav ul li {
    margin-right: 20px;
    font-size: 15px;
}

.header-left nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.header-left nav ul li a.highlight {
    color: #0F9D58;
    /* Google Play green color */
    border-bottom: 3px solid #0F9D58;
    /* Green underline */
    padding-bottom: 5px;
    /* Space between text and underline */
}

.header-right {
    display: flex;
    align-items: center;
    padding-right: 60px;
}

.header-right img.search-icon {
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
}

.header-right img.help-icon {
    height: 25px;
    margin-right: 15px;
    cursor: pointer;
}

.header-right img.user-icon {
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    /* Add padding inside the container */
    background-color: white;
    /* Set background to white */
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.box {
    background-color: white;
}

.app-info {
    max-width: 70%;
}

.app-info h1 {
    font-size: 30px;
    margin: 0;
    font-weight: bold;
}

.app-info p {
    margin: 5px 0;
    color: #5f6368;
}

.app-info p a {
    color: #0F9D58;
    text-decoration: none;
}

.ratings-downloads {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #5f6368;
}

.rating-section,
.downloads-section,
.rated-section {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    padding: 10px;
    /* Add padding around each component */
    margin-right: 10px;
    border-radius: 5px;
    /* Optional: round the corners */
}

.reviews,
.downloads,
.rated-age {
    font-size: 12px;
    color: #5f6368;
}

.rating-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.rated-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* Stack the 3+ above the Rated for 3+ */
}

.rated-section span {
    display: flex;
    align-items: center;
    margin-top: 5px;
    /* Add some space between the 3+ and the Rated for 3+ */
}


.buttons {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.install-btn {
    background-color: #0F9D58;
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
}

.icon-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    color: #0F9D58;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
}

.icon-btn img {
    height: 20px;
    margin-right: 5px;
}

.app-logo {
    text-align: right;
}

.app-logo img {
    height: 200px;
    width: 200px;
    border-radius: 20px;
}

.availability {
    color: #5f6368;
    margin-top: 10px;
}

.app-presentation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center elements vertically */
    padding: 20px 0;
    max-width: 1000px;
    /* Ensure the same width as .container */
    margin: 0 auto;
    /* Center the div horizontally */
}

.app-features {
    display: flex;
    align-items: center;
    overflow-x: auto;
    gap: 10px;
}

.app-features img {
    height: 350px;
    border-radius: 15px;
    object-fit: cover;
}

.arrow-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Add shadow around the border */
    transition: box-shadow 0.3s ease;
    /* Smooth transition for hover effect */
}

.arrow-button:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
    /* Slightly darker shadow on hover */
}

.arrow-button i {
    color: #333;
    font-size: 20px;
}


.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 20px;
    /* Adjust this value to move the sidebar to the right */
}

.app-support p,
.similar-apps p {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.similar-apps .similar-app-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.similar-apps .similar-app-item img {
    height: 50px;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    /* Add shadow around the border */
    transition: box-shadow 0.3s ease;
    /* Smooth transition for hover effect */
}

.similar-apps .similar-app-item img:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
    /* Slightly darker shadow on hover */
}

.similar-apps .similar-app-item .app-info {
    display: flex;
    flex-direction: column;
}

.similar-apps .similar-app-item .app-info p {
    margin: 0;
    font-weight: bold;
}

.similar-apps .similar-app-item .app-info span {
    color: #5f6368;
}

.container2 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-app {
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
    text-align: left;
}

.about-app h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.app-description {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
    /* Center the text */
    padding-right: 260px;
}

.star-icon {
    color: #FFB400;
    /* A yellow color for the stars */
    margin-right: 5px;
}

.app-meta {
    display: flex;
    justify-content: left;
    align-items: left;
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 20px;
    /* Add space before the next section */
    padding-top: 10px;
}

.updated-on p {
    margin: 0;
}

.category {
    padding-top: 10px;
    margin-left: -15px;
}

.category .category-button {
    background-color: #f1f3f4;
    color: #5f6368;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: default;
    font-size: 14px;
    margin-left: 15px;
}

/* Ratings and Reviews Section */
.ratings-reviews {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    /* Center the text */
}

.ratings-reviews h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.verified-reviews {
    font-size: 12px;
    color: #5f6368;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Apply the global font */
.ratings-reviews {
    font-family: inherit;
    padding: 20px;
    max-width: 1000px; /* Limit the maximum width for better readability */
    margin: 0 auto; /* Center the box horizontally */
    border-radius: 10px; /* Optional: Add rounded corners */
    background-color: #fff; /* Optional: Background color */
}

.ratings-reviews h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.device-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    border-radius: 50px;
    font-family: inherit;
}

.filter-btn.active {
    border-color: #0F9D58;
    background-color: #e8f5e9;
    color: #0F9D58;
}

.rating-summary {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.rating-score {
    font-size: 48px;
    margin-right: 20px;
    text-align: center;
    font-family: inherit;
}

.rating-stars {
    display: block;
    font-size: 24px;
    color: #FFA000;
    font-family: inherit;
}

.rating-count {
    font-size: 16px;
    color: #757575;
    font-family: inherit;
}

.rating-bars {
    flex-grow: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.rating-bar span {
    width: 20px;
    font-size: 14px;
    font-family: inherit;
}

.bar {
    flex-grow: 1;
    height: 8px;
    background-color: #eee;
    border-radius: 5px;
    margin-left: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background-color: #0F9D58;
}

.review {
    display: flex;
    align-items: flex-start;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    flex-direction: column;
}

.review img {
    margin-left: -100px;
}

.reviewer-info {
    margin-right: 20px;
    text-align: center;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    font-family: inherit;
}

.review-content {
    flex-grow: 1;
    font-family: inherit;
}

.review-date {
    font-size: 14px;
    color: #757575;
    margin-bottom: 10px;
    font-family: inherit;
}

.review-text {
    font-size: 15px;
    font-family: inherit;
    color: #757575;
}

.review-feedback {
    margin-top: 10px;
    font-family: inherit;
    color: #757575;
}

.review-feedback .que {
    display: flex;
    align-items: center;
    color: #757575;
}

.review-feedback .buttons {
    display: flex;
    /* Add display: flex to make buttons horizontal */
}

.feedback-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
    font-family: inherit;
}

/* General container used for aligning content */
.container-footer {
    max-width: 1000px;
    /* Or whatever width your main content uses */
    margin: 0 auto;
    padding: 0 15px;
    background-color: white;
}

/* Footer styles */
footer {
    background-color: #f5f5f5;
    padding: 20px 0;
    font-size: 14px;
    color: #757575;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    margin: 0 15px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column li a {
    text-decoration: none;
    color: #757575;
}

.footer-column li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-bottom ul li {
    margin-right: 15px;
}

.footer-bottom ul li a {
    text-decoration: none;
    color: #757575;
}

.footer-bottom ul li a:hover {
    text-decoration: underline;
}

.footer-country {
    display: flex;
    align-items: center;
}

.footer-country .flag {
    width: 24px;
    height: 16px;
    background: url('https://upload.wikimedia.org/wikipedia/en/thumb/4/41/Flag_of_India.svg/1024px-Flag_of_India.svg.png') no-repeat center center;
    background-size: contain;
    margin-right: 5px;
}

.footer-country span {
    color: #757575;
}


/* ... rest of your CSS ... */

/* Add these media queries at the bottom of your CSS file */

/* For small screens (mobile devices) */
@media only screen and (max-width: 768px) {
    .header-left li {
        display: none;
    }

    body {
        background-color: white;
    }

    .container {
        padding-left: 20px;
        background-color: white;
    }

    .app-header {
/*        flex-direction: column;*/
        display: flex;
        /* Stack elements vertically */
        align-items: flex-start;
        /* Align items to the start */
    }

    .app-info {
        max-width: 100%;
        /* Take up full width */
    }

    .app-logo {
        text-align: center;
        /* Center the logo */
        margin-top: 20px;
        /* Add some space */
    }

    .app-description {
        font-size: 13px; /* Slightly smaller font for mobile */
        padding-right: 20px; /* Reduce padding to fit smaller screens */
        text-align: justify; /* Adjust text alignment for readability */
    }

    .app-presentation {
        flex-direction: column; /* Stack presentation items vertically */
        justify-content: center;
        align-items: flex-start;
        padding: 15px 10px;
    }

    .app-features {
        gap: 10px; /* Maintain spacing in mobile view */
        padding-bottom: 5px; /* Adjust padding if needed */
    }

    .app-features img {
        width: 100%; /* Ensure all images are the same width */
        height: 200px; /* Fixed height for uniformity */
        max-width: none; /* Prevent max-width from limiting image size */
    }

    /* Adjust header for small screens */
    header {
        padding: 10px 20px;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        width: 50px;
        height: 50px;
    }

    .header-nav {
        display: none;
    }
    .app-logo img {
        height: 60px;
        width: 60px;
        border-radius: 12px;
    }

    .footer-country {
        display: none;
    }
}

/* For medium screens (tablets) */
@media only screen and (min-width: 769px) and (max-width: 992px) {

    .container {
        padding-left: 50px;
        background-color: white;
    }

    .top-charts {
        padding: 30px;
    }

    .device-selection {
        padding: 30px;
    }

    .recent-activity-section {
        padding-left: 50px;
    }

    .recent-activity-list {
        padding-left: 50px;
    }

    .activity-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .activity-grid {
        flex-direction: row;
    }

    .activity-item {
        width: 45%;
        margin-bottom: 20px;
    }

    /* Adjust header for medium screens */
    header {
        padding: 20px 50px;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo {
        width: 70px;
        height: 70px;
    }

    .header-nav {
        display: flex;
        gap: 20px;
    }

    .header-nav a {
        font-size: 16px;
    }
}