* {
    box-sizing: border-box; /* Include padding and borders in the element's width and height */
}

@media screen and (max-width: 768px) {
    /* Styles for screens smaller than 768px (like tablets and phones) */
    .image-gallery {
        width: 100%;
    }

    .image-container img {
        max-height: 50vh; /* Adjust image height for smaller screens */
    }

    /* Additional responsive adjustments */
}

@media screen and (orientation: portrait) {
    /* Styles for portrait mode */
}

@media screen and (orientation: landscape) {
    /* Styles for landscape mode */
}


body {
    background-color: #F0EDE5;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.footer {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; 
}

.footer-logo {
    margin: 0 10px;
    height: 50px;
    width: 50px;
}

.footer-tagline {
    font-size: 14px;
    font-family: Helvetica;
    margin: 0 5px;
}


.footer .privacy-policy-link {
    font-size: 14px;
    font-family: Helvetica;
    margin: 10px 0;
    color: blue;
}

.footer .subscription-policy-link {
    font-size: 16px;
    font-family: Helvetica;
    margin: 10px 0;
    color: blue;
    font-weight: bold;
}

.footer .terms-of-use-link {
    font-size: 14px;
    font-family: Helvetica;
    margin: 10px 0;
    color: blue;
}

.footer .gocardless-privacy-policy-link {
    font-size: 14px;
    font-family: Helvetica;
    margin: 10px 0;
    color: blue;
}

.footer .gocardless-terms-of-service-link {
    font-size: 14px;
    font-family: Helvetica;
    margin: 10px 0;
    color: blue;
}

.footer a {
    color: black;
    text-decoration: none;
    margin: 0 5px;
}

.footer-icon {
    height: 30px;
    margin-right: 5px;
}

.app-icon {
    height: 300px;
    margin-right: 25px;
    margin-left: 25px;
}

.main-content {
    flex-grow: 1;
    padding: 5px;
    width: 80%;
    height: 100vh;
    overflow: auto;
    font-size: 12px;
    font-family: Helvetica;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.homepage-main-content {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.privacy-policy-content {
    width: 50%;
    height: 100vh;
    overflow: auto; 
    text-align: left;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.privacy-heading {
    font-size: 16px;
    font-weight: bold;
    font-family: Helvetica;
    margin: 0 5px;
    padding: 5px;
}

.privacy-paragraph {
    font-size: 14px;
    font-family: Helvetica;
    margin: 0 5px;
    padding: 5px;
}

.app-section {
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 100%;
}

.app-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.app-icon {
    flex: 0 0 40%;
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
}

.app-info {
    flex: 1;
    font-family: Helvetica;
    padding-left: 20px;
}

.image-gallery {
    width: 75%;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.image-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden; /* Hide horizontal scrollbar */
    scroll-snap-type: x mandatory;
    width: 100%;
}

.image-slide {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    margin: 0; /* Remove any default margin */
}

.image-container {
    width: 100%;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border: 1px solid #bcbcbc;
    margin-bottom: 10px;
}

.image-description {
    text-align: center;
    margin-top: 10px;
}


.navigation {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: relative; /* Position relative to its normal position */
    z-index: 10; /* Ensure it's above other elements */
}

.navigation button {
    cursor: pointer;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #EC9C62; /* Visible against most backgrounds */
    border: 1px solid #000; /* Add border for visibility */
}

.video-link a {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.video-link a:hover {
    background-color: #0056b3;
}


