body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff; /* White theme */
    color: #333; /* Dark text */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html, body {
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex: 1;
    max-width: 989px;
    max-height: 80px;
    margin: 0 auto;
}

header .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #555; /* Subtle link color */
}

.container {
    flex: 1;
    max-width: 1010px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Keep images in a single row */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #f9f9f9;
}

.carousel-track {
    display: flex; /* Arrange images in a row */
    gap: 10px; /* Add space between images */
    padding: 5px; /* Add space between images */
    padding: 10px; /* Add some padding around the images */
}

.carousel img {
    flex: 0 0 auto; /* Prevent images from shrinking or growing */
    width: 230.45px; /* Set fixed width */
    height: 498px; /* Set fixed height */
    object-fit: cover; /* Maintain aspect ratio, crop if necessary */
    border-radius: 10px; /* Optional: round corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
}

.carousel::-webkit-scrollbar {
    height: 8px; /* Adjust scrollbar height */
}

.carousel::-webkit-scrollbar-thumb {
    background-color: #aaa; /* Scrollbar thumb color */
    border-radius: 10px; /* Round scrollbar edges */
}

.carousel::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Change color on hover */
}


.get-app-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Add padding between buttons */
    margin: 18px auto;
    max-width: 650px;
    margin-top: 66px;
}

.app-store-btn {
    flex: 0 0 auto;
}

.app-store-btn img {
    height: 86px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  padding-right: 0px;
  width: 256px;
  text-align: center;
}

.app-store-btn img:hover {
    transform: scale(1.1);
}

.play-store-btn {
    flex: 0 0 auto;
}

.play-store-btn img {
    height: 86px; /* Match the rendered height of the App Store button */
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    margin-top: -30px;
  
}

.play-store-btn img:hover {
    transform: scale(1.1);
}


footer {
    text-align: center;
    padding: 20px;
    color: #555;
    position: relative;
}

footer nav {
    margin-top: 10px;
}

footer nav a {
    color: #555;
    margin: 0 10px;
    text-decoration: none;
}
/* Add this to stylesV3.css */
/* Initial state: hide content until fully loaded */
body.loading {
    visibility: hidden; /* Prevent content from showing */
    opacity: 0; /* Add a smooth transition */
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    visibility: visible; /* Show content once loaded */
    opacity: 1;
    transition: opacity 0.3s ease-in-out; /* Add a smooth transition */
}

/* Logo container */
header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 380px;
}

/* Logo image */
header .logo-image {
    height: 40px; /* Adjust size as needed */
    object-fit: contain;
}


.get-app-btn .coming-soon {
    font-size: 1.5em;
    font-weight: bold;
    color: #555; /* Match the subtle color scheme */
    text-align: center;
    margin: 20px auto;
}


.contact-form {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.contact-form h2 {
    margin-bottom: 15px;
    font-size: 1.8em;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.faq {
    margin: 20px 0;
}

.faq h2 {
    margin-bottom: 15px;
    font-size: 1.8em;
}

.faq details {
    margin-bottom: 10px;
}

.faq details summary {
    font-weight: bold;
    cursor: pointer;
}

.resources {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.resources h2 {
    margin-bottom: 15px;
    font-size: 1.8em;
}

.resources ul {
    list-style: none;
    padding: 0;
}

.resources ul li {
    margin-bottom: 10px;
}

.resources ul li a {
    text-decoration: none;
    color: #007bff;
}

.resources ul li a:hover {
    text-decoration: underline;
}


.support-email-card {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    text-align: center;
}

.support-email-card p {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.email-link {
    font-size: 1.5em;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* General Adjustments */
body {
    font-size: 16px; /* Adjust base font size for readability */
}

/* Responsive Breakpoints */
@media (max-width: 1000px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        margin: 0;
    }

    header .logo {
        gap: 5px;
        font-size: 18px;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .container {
        padding: 10px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .carousel {
        border-radius: 10px;
        padding: 5px;
    }

    .carousel img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .get-app-btn .coming-soon {
        font-size: 1.2em;
    }

    footer {
        padding: 10px;
        font-size: 0.9em;
    }

    nav {
        padding-top: 15px;
        display: inline-block !important;
    }

    header nav a {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 480px) {
    header .logo {
        font-size: 16px;
    }

    header nav a {
        font-size: 14px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .carousel img {
        width: 90%;
        height: auto;
    }

    footer {
        font-size: 0.8em;
    }

    nav {
        padding-top: 15px;
        display: inline-block !important;
    }
}

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Slightly darker background for better contrast */
    color: #fff; /* White text for readability */
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3); /* Subtle shadow for better visibility */
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
}

.consent-banner-content {
    max-width: 960px; /* Restrict maximum width */
    width: 100%; /* Ensure it spans the full width of smaller screens */
    display: flex;
    flex-wrap: wrap; /* Adjust layout for smaller screens */
    justify-content: space-between;
    align-items: center;
    text-align: left; /* Align text to the left */
    gap: 15px; /* Add spacing between elements */
}

.consent-banner-content p {
    margin: 0;
    flex: 2; /* Make text take up more space */
    font-size: 14px;
    line-height: 1.5; /* Improve readability */
}

.consent-banner-content button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out; /* Add hover effect */
}

#accept-cookies {
    background-color: #4caf50;
    color: white;
}

#accept-cookies:hover {
    background-color: #45a049; /* Slightly darker on hover */
}

#decline-cookies {
    background-color: #f44336;
    color: white;
}

#decline-cookies:hover {
    background-color: #d32f2f; /* Slightly darker on hover */
}

@media (max-width: 768px) {
    #consent-banner {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .consent-banner-content {
        flex-direction: column; /* Stack elements vertically */
        text-align: center; /* Center text for smaller screens */
        gap: 10px; /* Reduce gap for compact layout */
    }

    .consent-banner-content p {
        font-size: 13px; /* Slightly smaller text on mobile */
    }

    .consent-banner-content button {
        width: 100%; /* Make buttons span full width */
    }
}

.carousel-track {
    cursor: grab;
}

.media-coverage {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.media-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.media-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.media-item h3 {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.media-item p {
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.media-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.2s ease-in-out;
}

.media-item a:hover {
    color: #0056b3;
}

@media (min-width: 768px) {
    .media-coverage {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.featured-in {
    margin: 1rem 0;
    text-align: center;
}

.featured-in h2 {
    font-size: 2em;
    margin-bottom: 2rem;
    color: #333;
    position: relative;
    display: inline-block;
}

.featured-in h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Adjust the existing media-coverage styles for homepage */
.featured-in .media-coverage {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-in .media-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.featured-in .media-item:hover {
    border-color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-in {
        margin: 2rem 0;
    }
    
    .featured-in h2 {
        font-size: 1.5em;
    }
    
    .featured-in .media-coverage {
        gap: 1rem;
    }
}