/* Base styles (Mobile First) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f7f8fa;
    color: #333;
    line-height: 1.6; /* Improve readability */
    font-size: 16px; /* Base font size */
}

body h1 {
    font-size: 2.5rem; /* Adjusted for mobile */
    color: #000;
    text-align: center; /* Centered for mobile */
    padding: 2rem 1rem; /* Adjusted padding */
    font-weight: 900;
}

/* Topbar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem; /* Adjusted padding */
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap; /* Allow items to wrap */
    gap: 1rem; /* Space between items if they wrap */
}

.topbar .header-icon {
    width: 180px; /* Adjusted size for mobile */
    height: auto; /* Maintain aspect ratio */
}

.topbar button {
    padding: 0.5rem 1rem; /* Adjusted padding */
    background-color: #000732;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem; /* Adjusted font size */
    /* Hide the button on mobile */
    display: none;
}

/* Hero Section */
.hero {
    width: 100%; /* Full width on mobile */
    height: auto; /* Auto height */
    min-height: auto; /* Remove minimum height constraint */
    margin: 0 auto; /* Remove side margins */
    border-radius: 0; /* Remove border-radius */
    overflow: hidden;
    display: flex;
    /* Remove background image for mobile */
    background-image: none;
    /* Add a solid background color for mobile */
    background-color: #f0f4ff; /* Example light background color */
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem; /* Add padding to the section itself */
}

.hero-content {
    width: 100%; /* Full width on mobile */
    padding: 0; /* Remove padding here */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
    max-width: 90%; /* Limit max width of content block */
}

.hero-text-container {
    /* Remove transparent white background for mobile */
    background-color: transparent;
    padding: 0; /* Remove padding here */
    border-radius: 0; /* Remove border-radius */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items */
    text-align: center; /* Center text */
    max-width: 100%; /* Allow full width within hero-content */
}

.hero-text-container h2 {
    font-size: 2rem; /* Adjusted font size */
    margin-bottom: 1rem;
    /* Adjust text color for readability on the new background */
    color: #000732;
}

.hero-text-container p {
    font-size: 1rem; /* Adjusted font size */
    margin-bottom: 1.5rem;
    /* Adjust text color for readability on the new background */
    color: #333;
}

.hero-text-container .store-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 12px;
    justify-content: center;
    align-items: center; /* Center items within the column */
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-text-container .store-buttons a {
    width: auto;
    margin-right: 0;
}

.hero-text-container .store-buttons a img {
    height: 40px;
    display: block;
    margin: 0 auto;
}

/* Styles for the new "Get Early Access" button */
.early-access-button {
    display: inline-block;
    margin-top: 0;
    padding: 0.8rem 2rem;
    background-color: #000732;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: fit-content;
}

.early-access-button:hover {
    background-color: #001a57;
}


/* Section Card */
.section-card {
    width: 90%; /* Adjusted width */
    margin: 3rem auto; /* Adjusted margin */
    background-color: #fff;
    display: flex;
    flex-direction: column; /* Stack elements vertically on mobile */
    border-radius: 15px; /* Adjusted border-radius */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.section-card .text {
    width: 100%; /* Full width on mobile */
    padding: 1.5rem; /* Adjusted padding */
}

.section-card .visual {
    width: 100%; /* Full width on mobile */
    height: 250px; /* Fixed height for visual on mobile */
    background: url('../img/using-app.png') no-repeat center center/cover;
}

.section-card h3 {
    font-size: 2rem; /* Adjusted font size */
    margin-bottom: 1rem;
    color: #000732;
}

.section-card p {
    font-size: 1rem; /* Adjusted font size */
    margin-bottom: 1.5rem; /* Adjusted margin */
}

.section-card button {
    background-color: #000732;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.section-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px; /* Adjusted margin */
}

.section-card li i {
    font-size: 1.5em; /* Adjusted size */
    color: #000732;
    margin-right: 15px; /* Adjusted margin */
    flex-shrink: 0;
    width: 25px; /* Adjusted width */
    text-align: center;
}

.section-card li .text-content {
    flex-grow: 1;
}

.section-card li h3 {
    margin-top: 0;
    margin-bottom: 3px; /* Adjusted margin */
    font-size: 1.1em; /* Adjusted font size */
    color: #000732;
}

.section-card li p {
    margin: 0;
    font-size: 0.9em; /* Adjusted font size */
    color: #555;
}

/* Countdown Section */
.countdown-section {
    width: 100%;
    background-color: #f0f4ff;
    padding: 3rem 1rem; /* Adjusted padding */
    text-align: center;
}

.countdown-section .container {
    width: 100%; /* Full width within section padding */
    max-width: 900px;
    margin: 0 auto;
}

.countdown-section h2 {
    font-size: 2.5rem; /* Adjusted font size */
    color: #000732;
    margin-bottom: 1rem;
}

.countdown-section .countdown-subtitle {
    font-size: 1.1rem; /* Adjusted font size */
    color: #555;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Adjusted gap */
    margin-bottom: 2rem; /* Adjusted margin */
    flex-wrap: wrap;
}

.countdown-timer div {
    background-color: #fff;
    padding: 1rem 1.5rem; /* Adjusted padding */
    border-radius: 8px; /* Adjusted border-radius */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.2rem; /* Adjusted font size */
    color: #000732;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px; /* Adjusted min-width */
}

.countdown-timer div span {
    font-size: 2.5rem; /* Adjusted font size */
    color: #4B0082;
    margin-bottom: 0.3rem; /* Adjusted margin */
}

.early-access-form {
    margin-top: 1.5rem; /* Adjusted margin */
}

.early-access-form p {
    font-size: 1rem; /* Adjusted font size */
    color: #333;
    margin-bottom: 1rem; /* Adjusted margin */
}

.early-access-form form {
    display: flex;
    justify-content: center;
    gap: 0.8rem; /* Adjusted gap */
    flex-direction: column; /* Stack form elements vertically on mobile */
    align-items: center; /* Center form elements */
}

.early-access-form input[type="email"] {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%; /* Full width on mobile */
    max-width: 300px; /* Max width */
}

.early-access-submit-button {
    padding: 0.8rem 1.5rem; /* Adjusted padding */
    background-color: #000732;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem; /* Adjusted font size */
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width on mobile */
    max-width: 300px; /* Max width */
}

.early-access-submit-button:hover {
    background-color: #001a57;
}

/* Base styles (Mobile First) */
/* ... (previous styles) ... */

/* Styles for the new user type question and options container */
.early-access-form .user-type-selection {
    /* On mobile, this block will be centered by the parent form's align-items: center */
    width: 100%; /* Take full width within the form's padding */
    max-width: 300px; /* Match max width of email input */
    margin-bottom: 1rem; /* Space below this block */
    text-align: center; /* Center the question text */
}

.early-access-form .user-type-question-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.8rem; /* Space below the question text */
}

.early-access-form .user-type-options {
    display: flex;
    flex-direction: column; /* Stack options vertically on mobile */
    gap: 0.8rem; /* Space between stacked options */
    justify-content: center; /* Center the flex items horizontally */
    align-items: center; /* Center items vertically in column */
}

/* Hide the default radio button */
.early-access-form .hidden-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none; /* Ensure it doesn't interfere with label clicks */
}

/* Style the label to look like a button */
.early-access-form .user-type-label {
    display: block; /* Make label a block element */
    width: 100%; /* Take full width of its container (.user-type-option or .user-type-options) */
    padding: 0.8rem 1rem; /* Match padding of email input */
    border: 1px solid #ccc;
    border-radius: 6px; /* Match border-radius */
    font-size: 1rem; /* Match font size */
    color: #555;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-align: center; /* Center label text */
}

/* Style the label when the corresponding radio button is checked */
.early-access-form input[type="radio"]:checked + .user-type-label {
    background-color: #e6f0ff; /* Light blue background */
    border-color: #000732; /* Dark blue border */
    color: #000732; /* Dark blue text */
    font-weight: bold;
}

/* Optional: Hover effect for labels */
.early-access-form .user-type-label:hover {
    background-color: #f0f0f0; /* Subtle hover effect */
}


/* Wide Section */
.wide-section {
    width: 90%; /* Adjusted width */
    height: auto; /* Auto height */
    min-height: 50vh; /* Minimum height */
    margin: 3rem auto; /* Adjusted margin */
    border-radius: 20px; /* Adjusted border-radius */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Stack elements vertically on mobile */
}

.wide-section .image {
    width: 100%; /* Full width on mobile */
    height: 250px; /* Fixed height for image on mobile */
    background: url('../img/plants.png') no-repeat center center/cover; /* Default background */
}

/* Specific image backgrounds for wide sections (if defined in CSS) */
/* If backgrounds are inline, they will override these */
.wide-section:nth-of-type(4) .image { background-image: url('../img/construction.png'); } /* Adjust index based on your HTML */
.wide-section:nth-of-type(5) .image { background-image: url('../img/solar-panel.png'); } /* Adjust index */
/* Add more as needed */


.wide-section .info {
    width: 100%; /* Full width on mobile */
    padding: 1.5rem; /* Adjusted padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align text to the left */
}

.wide-section h3 {
    font-size: 2rem; /* Adjusted font size */
    margin-bottom: 0.8rem; /* Adjusted margin */
}

.wide-section p {
    font-size: 1rem; /* Adjusted font size */
    margin-bottom: 1.5rem; /* Adjusted margin */
}

/* Specific styles for the professionals wide section */
.wide-section-professionals .info {
    justify-content: flex-start;
    flex-direction: column;
}

.wide-section-professionals .info h4 {
    font-size: 1rem; /* Adjusted size */
    margin-bottom: 0.8rem; /* Adjusted margin */
    flex-shrink: 0;
}

.wide-section-professionals .info .info-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wide-section-professionals .info .info-content h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.wide-section-professionals .info .info-content p {
    margin-bottom: 1rem; /* Added margin below paragraph */
}

/* Styles for the list within the professionals wide section */
.wide-section-professionals .info-content .professional-benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem; /* Adjusted margin */
    margin-bottom: 0;
    text-align: left;
}

.wide-section-professionals .info-content .professional-benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px; /* Adjusted margin */
}

.wide-section-professionals .info-content .professional-benefits-list li i {
    font-size: 1.3em; /* Adjusted size */
    color: #eee;
    margin-right: 10px; /* Adjusted margin */
    flex-shrink: 0;
    width: 20px; /* Adjusted width */
    text-align: center;
}

.wide-section-professionals .info-content .professional-benefits-list li .list-item-content {
    flex-grow: 1;
}

.wide-section-professionals .info-content .professional-benefits-list li h3 {
    margin-top: 0;
    margin-bottom: 2px; /* Adjusted margin */
    font-size: 1em; /* Adjusted font size */
    color: #eee;
}

.wide-section-professionals .info-content .professional-benefits-list li p {
    margin: 0;
    font-size: 0.8em; /* Adjusted font size */
    color: #eee;
    opacity: 0.9;
}


/* New Info Section */
.new-info-section {
    width: 90%; /* Adjusted width */
    margin: 3rem auto; /* Adjusted margin */
    padding: 1.5rem; /* Adjusted padding */
    background-color: #f8f8f8;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.new-info-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.new-info-section h2 {
    font-size: 2.5rem; /* Adjusted font size */
    color: #000732;
    margin-bottom: 1rem;
}

.new-info-section h2 .highlight {
    color: #4B0082;
    font-weight: 700;
}

.new-info-section .subtitle {
    font-size: 1.1rem; /* Adjusted font size */
    color: #555;
    margin-bottom: 1.5rem; /* Adjusted margin */
}

.new-info-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem; /* Adjusted margin */
    display: inline-block;
}

.new-info-section li {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* Adjusted margin */
}

.new-info-section li i {
    font-size: 1.5em; /* Adjusted size */
    color: #000732;
    margin-right: 10px; /* Adjusted margin */
    flex-shrink: 0;
    width: 25px; /* Adjusted width */
    text-align: center;
}

.new-info-section li .list-content {
    flex-grow: 1;
    text-align: left;
}

.new-info-section li h3 {
    margin-top: 0;
    margin-bottom: 3px; /* Adjusted margin */
    font-size: 1.1em; /* Adjusted font size */
    color: #000732;
}

.new-info-section li p {
    margin: 0;
    font-size: 0.9em; /* Adjusted font size */
    color: #555;
}

.new-info-section .learn-more-button {
    display: block;
    margin: 1.5rem auto 0 auto; /* Adjusted margin */
    text-decoration: none;
    background-color: #000732;
    color: white;
    padding: 0.8rem 1.5rem; /* Adjusted padding */
    border: none;
    border-radius: 6px;
    font-size: 1rem; /* Adjusted font size */
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: fit-content;
}

.new-info-section .learn-more-button:hover {
    background-color: #001a57;
}


/* Testimonials Section */
.testimonials {
    width: 90%; /* Adjusted width */
    margin: 3rem auto; /* Adjusted margin */
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #f0f4ff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center; /* Center text in cards */
}

.testimonial-card p {
    /* font-style: italic; */ /* Removed italic as per original CSS */
    color: #fff; /* Color from original CSS */
    font-size: 1rem;
    margin-bottom: 1rem; /* Added margin */
}

.testimonial-card strong {
    display: block;
    margin-top: 0.5rem; /* Adjusted margin */
    font-size: 1rem;
    color: #fff; /* Color from original CSS */
}

.testimonial-card .testimonial-bottom-text {
    margin-top: 0.5rem; /* Adjusted margin */
    font-size: 0.9rem; /* Adjusted font size */
}


/* Skills Section */
.skills-section {
    width: 90%; /* Adjusted width */
    margin: 3rem auto; /* Adjusted margin */
    text-align: center;
    padding: 0; /* Remove padding here, add to container if needed */
}

.skills-section h2 {
    font-size: 2.5rem; /* Adjusted font size */
    color: #000732;
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjusted min-width for smaller screens */
    gap: 1rem; /* Adjusted gap */
    justify-content: center;
}

.skill-card {
    background-color: #fff;
    border-radius: 10px; /* Adjusted border-radius */
    padding: 1rem; /* Adjusted padding */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.skill-card:hover {
    transform: translateY(-5px); /* Adjusted lift */
    box-shadow: 0 6px 15px rgba(0,0,0,0.1); /* Adjusted shadow */
}

.skill-card i {
    font-size: 2.5rem; /* Adjusted size */
    color: #000732;
    margin-bottom: 0.5rem; /* Adjusted margin */
}

.skill-card h3 {
    font-size: 1rem; /* Adjusted font size */
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Full Color Section with Image Carousel */
.full-color-section {
    width: 100%; /* Full width */
    padding: 3rem 0; /* Adjusted padding */
    /* Background color and text color are set inline in HTML */
}

.full-color-section .container {
    width: 90%; /* Adjusted width */
    max-width: 1200px;
    margin: 0 auto;
}

.full-color-section .section-content {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    gap: 2rem;
    align-items: center;
}

.full-color-section .info {
    width: 100%; /* Full width on mobile */
    text-align: center;
}

.full-color-section .info h3 {
    font-size: 2.5rem; /* Adjusted font size */
    margin-bottom: 1rem;
    color: inherit;
}

.full-color-section .info p {
    font-size: 1.1rem; /* Adjusted font size */
    margin-bottom: 1.5rem;
    color: inherit;
}

.full-color-section .info button {
    background-color: #fff;
    color: #000732;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.full-color-section .info button:hover {
    background-color: #eee;
    color: #000732;
}

.image-carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem; /* Adjusted gap */
    padding-bottom: 1rem;
    width: 100%;
    /* scroll-snap-type: x mandatory; */
    -webkit-overflow-scrolling: touch;
}

.image-carousel img {
    height: 200px; /* Adjusted height for mobile */
    width: auto;
    border-radius: 8px; /* Adjusted border-radius */
    scroll-snap-align: start;
    flex-shrink: 0;
    background-color: transparent;
}

/* Hide scrollbar */
.image-carousel::-webkit-scrollbar { display: none; }
.image-carousel { -ms-overflow-style: none; scrollbar-width: none; }


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem; /* Adjusted padding */
    font-size: 0.9em;
}

footer .container {
    width: 100%; /* Full width within footer padding */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; /* Remove container padding */
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px; /* Adjusted margin */
    font-size: 0.9em; /* Adjusted font size */
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 1rem; /* Adjusted margin */
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow links to wrap */
    gap: 0.5rem; /* Space between wrapped links */
}

/* Modal (Basic responsiveness) */
#modal > div {
    width: 90%; /* Adjusted width */
    max-width: 350px; /* Max width */
    padding: 1.5rem; /* Adjusted padding */
    margin: 10% auto;
}

.store-buttons-link {
  margin-right: 0; /* Remove right margin */
  margin-bottom: 1rem; /* Add bottom margin */
  display: block; /* Make them block elements */
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  background-color: #000732;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center; /* Center text */
}

.store-buttons-link:last-child {
    margin-bottom: 0; /* Remove bottom margin from last button */
}

.store-buttons-link:hover {
  background-color: #001a57;
}

.disabled-button {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    background-color: #ccc !important;
    color: #666 !important;
}

.disabled-button:hover {
    background-color: #ccc !important;
    color: #666 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* --- Media Queries for larger screens --- */

/* --- Media Queries for larger screens --- */

/* Tablet and medium desktop (768px to 1669px) */
@media (min-width: 768px) {
    body h1 {
        font-size: 3rem; /* Slightly smaller than original desktop */
        padding: 2.5rem 5%; /* Adjusted padding */
        text-align: left;
    }

    .topbar {
        padding: 10px 5%; /* Adjusted padding */
        flex-wrap: nowrap;
        gap: 20px;
    }

    .topbar .header-icon {
        width: 220px; /* Adjusted size */
        height: auto;
    }

    .topbar button {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        /* Show the button on larger screens */
        display: block;
    }

    .hero {
        width: 90%; /* Revert width */
        height: 50vh; /* Revert height */
        min-height: 0; /* Revert min-height */
        margin: 2rem auto; /* Revert margin */
        border-radius: 25px; /* Revert border-radius */
        /* Add background image back */
        background-image: url('../img/header.png');
        /* Remove solid background color */
        background-color: transparent;
        align-items: center;
        justify-content: flex-start;
        padding: 0; /* Remove padding from section */
    }

    .hero-content {
        width: 60%; /* Revert width */
        padding: 1.5rem; /* Revert padding */
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }

    .hero-text-container {
        /* Add transparent white background back */
        background-color: rgba(255, 255, 255, 0.7);
        padding: 1.5rem; /* Revert padding */
        border-radius: 15px; /* Revert border-radius */
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }

    .hero-text-container h2 {
        font-size: 3rem; /* Revert font size */
        margin-bottom: 0.8rem; /* Revert margin */
        color: #000732; /* Ensure color is dark blue */
    }

    .hero-text-container p {
        font-size: 1.1rem; /* Revert font size */
        margin-bottom: 1rem; /* Revert margin */
        color: #333; /* Ensure color is dark grey */
    }

    .hero-text-container .store-buttons {
        justify-content: flex-start;
        flex-direction: row; /* Side-by-side */
        gap: 12px;
        flex-wrap: nowrap;
    }

     .hero-text-container .store-buttons a {
        width: auto;
        margin-right: 1rem;
     }

     .hero-text-container .store-buttons a img {
        height: 45px;
        margin: 0;
     }

    .early-access-button {
        margin-top: 1rem;
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
        width: auto;
        max-width: fit-content;
    }


    .section-card {
        width: 90%; /* Adjusted width */
        margin: 3rem auto; /* Adjusted margin */
        flex-direction: row;
        border-radius: 15px; /* Adjusted border-radius */
    }

    .section-card .text {
        width: 60%;
        padding: 1.5rem; /* Adjusted padding */
    }

    .section-card .visual {
        width: 40%;
        height: auto;
    }

    .section-card h3 {
        font-size: 2rem; /* Adjusted font size */
    }

    .section-card p {
        font-size: 1.2rem; /* Adjusted font size */
    }

    .section-card li i {
        font-size: 1.5em; /* Adjusted size */
        margin-right: 15px; /* Adjusted margin */
        width: 25px; /* Adjusted width */
    }

    .section-card li h3 {
        margin-bottom: 3px; /* Adjusted margin */
        font-size: 1.1em; /* Adjusted font size */
    }

    .section-card li p {
        font-size: 0.9em; /* Adjusted font size */
    }


    .countdown-section {
        padding: 3.5rem 0; /* Adjusted padding */
    }

    .countdown-section h2 {
        font-size: 2.8rem; /* Adjusted font size */
    }

    .countdown-section .countdown-subtitle {
        font-size: 1.2rem; /* Adjusted font size */
    }

    .countdown-timer {
        gap: 1.5rem; /* Adjusted gap */
        margin-bottom: 2.5rem; /* Adjusted margin */
    }

    .countdown-timer div {
        padding: 1.2rem 1.8rem; /* Adjusted padding */
        border-radius: 9px; /* Adjusted border-radius */
        font-size: 1.3rem; /* Adjusted font size */
        min-width: 90px; /* Adjusted min-width */
    }

    .countdown-timer div span {
        font-size: 2.8rem; /* Adjusted font size */
        margin-bottom: 0.4rem; /* Adjusted margin */
    }

    .early-access-form {
        margin-top: 1.8rem; /* Adjusted margin */
    }

    .early-access-form p {
        font-size: 1.1rem; /* Adjusted font size */
        margin-bottom: 1.2rem; /* Adjusted margin */
    }

    .early-access-form form {
        flex-direction: row; /* Side-by-side */
        gap: 1rem; /* Space between items */
        align-items: flex-start; /* Align items to the top */
    }

    .early-access-form input[type="email"] {
        width: 250px; /* Adjusted width */
        max-width: none;
    }

    .early-access-form .user-type-selection {
        /* In row layout, adjust width and margin */
        width: auto; /* Auto width */
        max-width: none;
        margin-bottom: 0; /* Remove bottom margin */
        margin-right: 1rem; /* Add right margin to separate from button */
        text-align: left; /* Align question text to the left */
        /* Ensure this item aligns correctly in the flex row */
        align-self: flex-start; /* Align to the top of the flex container */
    }

    .early-access-form .user-type-question-text {
         margin-bottom: 0.5rem; /* Adjust margin */
    }

    .early-access-form .user-type-options {
        flex-direction: row; /* Side-by-side options */
        gap: 1rem; /* Space between options */
        justify-content: flex-start; /* Align options to the left */
        align-items: center; /* Vertically center items in row */
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .early-access-form .user-type-label {
        width: auto; /* Auto width for side-by-side */
        padding: 0.7rem 1.4rem; /* Adjust padding to match button size */
        font-size: 0.95rem; /* Adjust font size */
    }

    .early-access-submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: auto;
        max-width: fit-content;
    }


    .wide-section {
        width: 90%; /* Adjusted width */
        margin: 3rem auto; /* Adjusted margin */
        flex-direction: row;
        min-height: 50vh; /* Adjusted min-height */
    }

    .wide-section .image {
        width: 50%; /* Adjusted width */
        height: auto;
    }

    .wide-section .info {
        width: 50%; /* Adjusted width */
        padding: 1.5rem; /* Adjusted padding */
    }

    .wide-section h3 {
        font-size: 2rem; /* Adjusted font size */
        margin-bottom: 0.8rem; /* Adjusted margin */
    }

    .wide-section p {
        font-size: 1.2rem; /* Adjusted font size */
        margin-bottom: 1.5rem; /* Adjusted margin */
    }

    .wide-section-professionals .info h4 {
        font-size: 1.1rem; /* Adjusted size */
        margin-bottom: 0.8rem; /* Adjusted margin */
    }

    .wide-section-professionals .info-content .professional-benefits-list {
        margin-top: 1.2rem; /* Adjusted margin */
    }

    .wide-section-professionals .info-content .professional-benefits-list li {
        margin-bottom: 12px; /* Adjusted margin */
    }

    .wide-section-professionals .info-content .professional-benefits-list li i {
        font-size: 1.4em; /* Adjusted size */
        margin-right: 12px; /* Adjusted margin */
        width: 22px; /* Adjusted width */
    }

    .wide-section-professionals .info-content .professional-benefits-list li h3 {
        margin-bottom: 3px; /* Adjusted margin */
        font-size: 1.1em; /* Adjusted font size */
    }

    .wide-section-professionals .info-content .professional-benefits-list li p {
        font-size: 0.9em; /* Adjusted font size */
    }


    .new-info-section {
        width: 90%; /* Adjusted width */
        margin: 3rem auto; /* Adjusted margin */
        padding: 2rem;
    }

    .new-info-section h2 {
        font-size: 2.8rem; /* Adjusted font size */
    }

    .new-info-section .subtitle {
        font-size: 1.2rem; /* Adjusted font size */
        margin-bottom: 1.8rem; /* Adjusted margin */
    }

    .new-info-section ul {
        margin-bottom: 1.8rem; /* Adjusted margin */
    }

    .new-info-section li {
        margin-bottom: 18px; /* Adjusted margin */
    }

    .new-info-section li i {
        font-size: 1.6em; /* Adjusted size */
        margin-right: 12px; /* Adjusted margin */
        width: 28px; /* Adjusted width */
    }

    .new-info-section li h3 {
        margin-bottom: 4px; /* Adjusted margin */
        font-size: 1.1em; /* Adjusted font size */
    }

    .new-info-section li p {
        font-size: 0.9em; /* Adjusted font size */
    }

    .new-info-section .learn-more-button {
        margin: 1.8rem auto 0 auto; /* Adjusted margin */
        padding: 0.8rem 1.8rem; /* Adjusted padding */
        font-size: 1rem; /* Adjusted font size */
    }


    .testimonials {
        width: 90%; /* Adjusted width */
        margin: 3rem auto; /* Adjusted margin */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted min-width */
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-card strong {
        margin-top: 0.5rem;
        font-size: 1rem;
    }

    .testimonial-card .testimonial-bottom-text {
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }


    .skills-section {
        width: 90%; /* Adjusted width */
        margin: 3rem auto; /* Adjusted margin */
    }

    .skills-section h2 {
        font-size: 2.5rem; /* Adjusted font size */
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Adjusted min-width */
        gap: 1.2rem; /* Adjusted gap */
    }

    .skill-card {
        padding: 1.2rem; /* Adjusted padding */
        border-radius: 11px; /* Adjusted border-radius */
    }

    .skill-card:hover {
        transform: translateY(-6px); /* Adjusted lift */
        box-shadow: 0 7px 18px rgba(0,0,0,0.11); /* Adjusted shadow */
    }

    .skill-card i {
        font-size: 2.8rem; /* Adjusted size */
        margin-bottom: 0.8rem; /* Adjusted margin */
    }

    .skill-card h3 {
        font-size: 1.1rem; /* Adjusted font size */
    }


    .full-color-section {
        padding: 3.5rem 0; /* Adjusted padding */
    }

    .full-color-section .container {
        width: 90%; /* Adjusted width */
    }

    .full-color-section .section-content {
        flex-direction: row; /* Side-by-side */
        gap: 3rem; /* Adjusted gap */
    }

    .full-color-section .info {
        width: 45%; /* Adjusted width */
        text-align: left;
    }

    .full-color-section .info h3 {
        font-size: 2.5rem; /* Adjusted font size */
    }

    .full-color-section .info p {
        font-size: 1.1rem; /* Adjusted font size */
    }

    .full-color-section .info button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .image-carousel {
        width: 55%; /* Adjusted width */
        gap: 1.2rem; /* Adjusted gap */
    }

    .image-carousel img {
        height: 220px; /* Adjusted height */
        border-radius: 9px; /* Adjusted border-radius */
    }


    footer {
        padding: 25px 0; /* Adjusted padding */
    }

    footer .container {
        padding: 15px 0; /* Adjusted padding */
    }

    footer a {
        margin: 0 9px; /* Adjusted margin */
    }

    .footer-links {
        margin-bottom: 12px; /* Adjusted margin */
    }

    #modal > div {
        width: 320px; /* Adjusted width */
        padding: 1.8rem; /* Adjusted padding */
    }

    .store-buttons-link {
        margin-bottom: 0.8rem; /* Adjusted margin */
        padding: 0.7rem 1.4rem; /* Adjusted padding */
        font-size: 0.95rem; /* Adjusted font size */
    }
}


/* Large desktop (1670px and wider) */
@media (min-width: 1670px) {
    body h1 {
        font-size: 3.0rem; /* Original size */
        padding: 3rem 10%; /* Original padding */
        text-align: left;
    }

    .topbar {
        padding: 10px 10%; /* Original padding */
        flex-wrap: nowrap;
        gap: 20px;
    }

    .topbar .header-icon {
        width: 270px; /* Original size */
        height: 60px;
    }

    .topbar button {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        /* Show the button on larger screens */
        display: block;
    }

    .hero {
        width: 80%; /* Original width */
        height: 60vh; /* Original height */
        min-height: 0;
        margin: 2rem auto;
        border-radius: 30px; /* Original border-radius */
        background-image: url('../img/header.png'); /* Original background image */
        background-color: transparent; /* Ensure no solid background */
        align-items: center;
        justify-content: flex-start;
        padding: 0;
    }

    .hero-content {
        width: 50%; /* Original width */
        padding: 2rem; /* Original padding */
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }

    .hero-text-container {
        background-color: rgba(255, 255, 255, 0.7); /* Original transparent white background */
        /* padding: 2rem; Original padding */
        border-radius: 30px; /* Original border-radius */
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }

    .hero-text-container h2 {
        font-size: 4.0rem; /* Original font size */
        margin-bottom: 1rem; /* Original margin */
        color: #000732; /* Ensure color is dark blue */
    }

    .hero-text-container p {
        font-size: 1.25rem; /* Original font size */
        margin-bottom: 1.5rem; /* Original margin */
        color: #333; /* Ensure color is dark grey */
    }

    .hero-text-container .store-buttons {
        justify-content: flex-start;
        flex-direction: row;
        gap: 12px;
        flex-wrap: nowrap;
    }

     .hero-text-container .store-buttons a {
        width: auto;
        margin-right: 1rem;
     }

     .hero-text-container .store-buttons a img {
        height: 50px;
        margin: 0;
     }

    .early-access-button {
        margin-top: 1.5rem;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        width: auto;
        max-width: fit-content;
    }


    .section-card {
        width: 80%;
        margin: 4rem auto;
        flex-direction: row;
        border-radius: 20px;
    }

    .section-card .text {
        width: 60%;
        padding: 2rem;
    }

    .section-card .visual {
        width: 40%;
        height: auto;
    }

    .section-card h3 {
        font-size: 2.5rem;
    }

    .section-card p {
        font-size: 1.8rem;
    }

    .section-card li i {
        font-size: 1.8em;
        margin-right: 20px;
        width: 30px;
    }

    .section-card li h3 {
        margin-bottom: 5px;
        font-size: 1.3em;
    }

    .section-card li p {
        font-size: 1em;
    }


    .countdown-section {
        padding: 4rem 0;
    }

    .countdown-section h2 {
        font-size: 3rem;
    }

    .countdown-section .countdown-subtitle {
        font-size: 1.3rem;
    }

    .countdown-timer {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .countdown-timer div {
        padding: 1.5rem 2rem;
        border-radius: 10px;
        font-size: 1.5rem;
        min-width: 100px;
    }

    .countdown-timer div span {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .early-access-form {
        margin-top: 2rem;
    }

    .early-access-form p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .early-access-form form {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
    }

    .early-access-form input[type="email"] {
        width: 300px;
        max-width: none;
    }

    .early-access-form .user-type-selection {
        width: auto;
        max-width: none;
        margin-bottom: 0;
        margin-right: 1rem;
        text-align: left;
        align-self: flex-start;
    }

    .early-access-form .user-type-question-text {
         margin-bottom: 0.5rem;
    }

    .early-access-form .user-type-options {
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
    }

    .early-access-form .user-type-label {
        width: auto;
        padding: 0.8rem 1.5rem; /* Match button padding */
        font-size: 1rem; /* Match button font size */
    }

    .early-access-submit-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        width: auto;
        max-width: fit-content;
    }


    .wide-section {
        width: 80%;
        margin: 4rem auto;
        flex-direction: row;
        min-height: 60vh;
    }

    .wide-section .image {
        width: 60%;
        height: auto;
    }

    .wide-section .info {
        width: 40%;
        padding: 2rem;
    }

    .wide-section h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .wide-section p {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .wide-section-professionals .info h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .wide-section-professionals .info-content .professional-benefits-list {
        margin-top: 1.5rem;
    }

    .wide-section-professionals .info-content .professional-benefits-list li {
        margin-bottom: 15px;
    }

    .wide-section-professionals .info-content .professional-benefits-list li i {
        font-size: 1.5em;
        margin-right: 15px;
        width: 25px;
    }

    .wide-section-professionals .info-content .professional-benefits-list li h3 {
        margin-bottom: 5px;
        font-size: 1.2em;
    }

    .wide-section-professionals .info-content .professional-benefits-list li p {
        font-size: 1em;
    }


    .new-info-section {
        width: 80%;
        margin: 4rem auto;
        padding: 2rem;
    }

    .new-info-section h2 {
        font-size: 3rem;
    }

    .new-info-section .subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .new-info-section ul {
        margin-bottom: 2rem;
    }

    .new-info-section li {
        margin-bottom: 20px;
    }

    .new-info-section li i {
        font-size: 1.8em;
        margin-right: 15px;
        width: 30px;
    }

    .new-info-section li h3 {
        margin-bottom: 5px;
        font-size: 1.2em;
    }

    .new-info-section li p {
        font-size: 1em;
    }

    .new-info-section .learn-more-button {
        margin: 2rem auto 0 auto;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }


    .testimonials {
        width: 80%;
        margin: 4rem auto;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .testimonial-card strong {
        margin-top: 0.5rem;
        font-size: 1rem;
    }

    .testimonial-card .testimonial-bottom-text {
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }


    .skills-section {
        width: 80%;
        margin: 4rem auto;
    }

    .skills-section h2 {
        font-size: 2.8rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .skill-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .skill-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .skill-card i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .skill-card h3 {
        font-size: 1.3rem;
    }


    .full-color-section {
        padding: 4rem 0;
    }

    .full-color-section .container {
        width: 80%;
    }

    .full-color-section .section-content {
        flex-direction: row;
        gap: 4rem;
    }

    .full-color-section .info {
        width: 40%;
        text-align: left;
    }

    .full-color-section .info h3 {
        font-size: 2.8rem;
    }

    .full-color-section .info p {
        font-size: 1.2rem;
    }

    .full-color-section .info button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .image-carousel {
        width: 60%;
        gap: 1.5rem;
    }

    .image-carousel img {
        height: 250px;
        border-radius: 10px;
    }


    footer {
        padding: 30px 0;
    }

    footer .container {
        padding: 20px 0;
    }

    footer a {
        margin: 0 10px;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    #modal > div {
        width: 300px;
        max-width: none;
        padding: 2rem;
    }

    .store-buttons-link {
        margin-bottom: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}
