body {
    font-family: Arial, sans-serif;
    background-color: #333;
    margin: 0;
    color: #333;
}
.container {
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.content {
    padding: 8px;
}
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.store-icon {
    width: 200px; /* Adjust the width as needed */
    height: auto;
}
.qr-code img {
    width: 150px; /* Adjust the width as needed */
    height: 150px; /* Adjust the height as needed */
}
@media (min-width: 768px) {
    .content {
        padding: 30px;
    }
    h1 {
        font-size: 2.5rem;
    }
}

.qr-code {
    margin-top: 20px;
    width: 150px;
    height: 150px;
}
.store-icon {
    width: 150px;
}
.screenshot {
    width: 100%; /* Full width of the scrollable container */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the entire image is visible without cutting */
}
.screenshot-top {
    display: block; /* Ensures the image is treated as a block-level element */
    margin: 0 auto; /* Automatically calculates equal left and right margins */
    width: 300px;  /* Fixed width */
  }

  .responsive-text {
    font-size: 1.5em; /* Default font size */
}

@media (max-width: 1200px) {
    .responsive-text {
        font-size: 1em;
    }
}

@media (max-width: 992px) {
    .responsive-text {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .responsive-text {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .responsive-text {
        font-size: 0.6em;
    }
}

@media (max-width: 400px) {
    .responsive-text {
        font-size: 0.6em;
    }
}

.scrollable-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
    width: 300px; /* Match the width of the image */
    height: auto; /* Adjust height automatically */
    scroll-behavior: smooth;
}
.scrollable-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}
.scrollable-container img {
    flex-shrink: 0; /* Prevents images from shrinking */
}
.arrow-button {
    background-color: #FE548C; /* Button background color */
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    margin: 5px;
    width: 100px;
}
.arrow-button:focus {
    outline: none;
}
.arrow-button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.arrow-buttons {
    display: flex;
    justify-content: center;
}
h1 {
    font-size: 2rem;
}
@media (min-width: 768px) {
    .content {
        padding: 20px;
    }
    h1 {
        font-size: 2.5rem;
    }
}

.store-icon {
    width: 150px; /* Set a fixed width for the icons */
    height: auto; /* Maintain the aspect ratio */
}
.download-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.download-container div {
    margin: 10px;
}