body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    max-width: 100vw;
    box-sizing: border-box;
}
#logo-container {
    display: flex;
    position: sticky;
    top: 20px;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    width: 80%;
    max-width: 1350px;
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 10px rgba(0,0,0,0.1);
}
#logo {
    height: 65px;
}
#navigation-links {
    font-size: 16px;
}
#navigation-links a {
    color: #000000;
    text-decoration: none;
    margin: 0 10px;
}
#navigation-links a:hover {
    text-decoration: underline;
}

/* Premium/Dashboard button styling */
#navigation-links .premium-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

#navigation-links .premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

#navigation-links .premium-link {
    color: #667eea;
    font-weight: 600;
}

#navigation-links .premium-link:hover {
    color: #764ba2;
}

/* Mobile menu toggle button - hidden by default on desktop */
#mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

#mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

#mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}
.hero-section, .faq-section, .review-section, .explanation-section, .static-section {
    width: 80%;
    max-width: 1350px;
    margin-bottom: 20px;
}
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.curvy-badge {
    position: absolute;
    top: -30px;
    left: 0px;
    align-items: left;
    padding: 10px 20px;
    background-color: #FF9A51;
    color: white;
    border-radius: 50px;
    font-weight: bold;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: left;
    width: 100%;
}
.hero-text {
    flex-basis: 50%;
    text-align: left;
}
.hero-image {
    flex-basis: 50%;
    text-align: right;
}
.hero-image img {
    max-width: 100%;
    height: auto;
}
.form-container {
    width: 100%;
}
.form-container form {
    margin-top: -240px;
    padding: 0px;
    border-radius: 10px;
    width: 80%;
    max-width: 1350px;
    box-sizing: border-box;
}
form {
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1350px;
}
/* Adjusting the spacing around the "Upscale Image" checkbox */
input[type="checkbox"] + label {
    margin-top: 15px; /* Adds space above the label */
}

input[type="checkbox"], input[type="radio"] {
    margin-right: 5px; /* Adds space to the right of the checkbox/radio button */
}

/* Ensuring the submit button stands out */
input[type="submit"] {
    background-color: #94C003;
    color: white;
    padding: 16px 24px;
    margin: 8px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}
input[type="submit"]:hover {
    background-color: #769a00;
}
#result img {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}
.result-container {
    position: relative;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center elements horizontally */
    justify-content: center; /* Center elements vertically */
    text-align: center; /* Center align the text within */
    margin: auto; /* Center the container within its parent if needed */
}
.download-button, .download-svg-button {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #94C003;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.faq-section, .review-section, .explanation-section, .static-section {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.faq-question, .review, .image-example {
    margin-bottom: 20px;
    color: #333;
}
.image-example img {
    width: 100%;
    max-width: 200px;
    height: auto;
}
.image-example {
    display: flex;
    justify-content: space-between;
}
a.cky-banner-element {
        padding: 8px 30px;
        background: #F8F9FA;
        color: #858A8F;
        border: 1px solid #DEE2E6;
        box-sizing: border-box;
        border-radius: 2px;
        cursor: pointer;
}

/* file upload button */
input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    margin-top: 16px;
    transition: background-color 200ms;
}

/* file upload button hover state */
input[type="file"]::file-selector-button:hover {
    background-color: #f3f4f6;
}

/* file upload button active state */
input[type="file"]::file-selector-button:active {
    background-color: #e5e7eb;
}

footer {
    background-color: #333;  /* Background color */
    color: #fff;  /* Text color */
    padding: 30px 0;  /* Padding for the footer */
    margin-top: 20px;
    text-align: left;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;  /* Center align the footer content */
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin: 30px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 1.2em;  /* Adjusted font size */
    text-transform: uppercase;  /* Uppercase for headings */
}

.footer-column a {
    display: block;
    margin-bottom: 5px;
    color: #fff;  /* Link color */
    text-decoration: none;  /* Remove underline from links */
}

.footer-column a:hover {
    text-decoration: underline;  /* Underline on hover */
}

.footer-column p {
    margin: 5px 0;
    color: #ccc;  /* Adjust text color for paragraphs */
}

.footer-column .footer-logo img {
    max-width: 100px;  /* Size of the logo */
}

.footer-container select {
    margin-top: 10px;
    background-color: #555;  /* Background color for select */
    color: #fff;  /* Text color for select */
    border: none;
    padding: 5px;
    border-radius: 5px;
}

.footer i {
    margin-right: 5px;
}

footer p {
    text-align: left;
    margin-top: 20px;
    color: #ccc;  /* Footer text color */
}

.footer-language {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;  /* Add some space at the bottom */
}

/* Align label and select element */
.footer-language label {
    margin-right: 5px;
}

.slider-container {
    display: none;
    margin-top: 10px;
}
.slider-label {
    display: inline-block;
    width: 100px;
}
legend {
    font-weight: bold;
    margin-bottom: 10px;
}
.snip-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Changed from space-around to center */
    margin: 16px;
  }
  
.snip1533 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #9e9e9e;
    display: inline-block;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    max-width: 320px;
    min-width: 250px;
    position: relative;
    text-align: center;
    width: 80%;
    border-radius: 5px;
    background-color: #ffffff;
    border-top: 5px solid #FCC89D;
    box-sizing: border-box;
  }
  
.snip1533 *:before {
    box-sizing: border-box;
    transition: all 0.1s ease-out;
  }
  
.snip1533 figcaption {
    padding: 13% 10% 12%;
  }
  
.snip1533 figcaption:before {
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: #d2652d;
    content: "❞";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    left: 50%;
    line-height: 60px;
    position: absolute;
    top: -30px;
    width: 60px;
  }
  
.snip1533 h3 {
    color: #3c3c3c;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
  }
  
.snip1533 h4 {
    font-weight: 400;
    margin: 0;
    opacity: 0.5;
  }
  
.snip1533 blockquote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
  }
  
.snip-container::after {
    content: "";
    display: table;
    clear: both;
  }
.how-to-section {
    background: #f8f8f8; /* Solid background color */
    width: 80%;
    max-width: 1350px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
}

.how-to-step {
    flex-basis: 30%;
    text-align: center;
}

.how-to-step h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.loader {
    height: 30px;
    aspect-ratio: 2.5;
    --_g: no-repeat radial-gradient(farthest-side,#000 90%,#0000);
    background:var(--_g), var(--_g), var(--_g), var(--_g);
    background-size: 20% 50%;
    animation: l43 1s infinite linear;
    margin-top: 20px;
    display: none; 
  }
  @keyframes l43 {
    0%     {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
    16.67% {background-position: calc(0*100%/3) 0   ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
    33.33% {background-position: calc(0*100%/3) 100%,calc(1*100%/3) 0   ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
    50%    {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 100%,calc(2*100%/3) 0   ,calc(3*100%/3) 50% }
    66.67% {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 100%,calc(3*100%/3) 0   }
    83.33% {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 100%}
    100%   {background-position: calc(0*100%/3) 50% ,calc(1*100%/3) 50% ,calc(2*100%/3) 50% ,calc(3*100%/3) 50% }
  }

  .explanatory-section {
    background: #F8F9FA; /* Solid background color */
    width: 80%;
    max-width: 1350px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center; /* Align items vertically in the center */
}

.explanatory-text {
    flex: 1; /* Take up available space */
    margin-right: 20px; /* Add some space between text and image */
}

.explanatory-image {
    flex-shrink: 0; /* Prevent image from shrinking */
}

.explanatory-image img {
    max-width: 500px; /* Set max width for the image */
    border-radius: 10px; /* Optional: add some rounding to image corners */
}


/* Add this to your existing CSS file */

.comparison-table {
    width: 80%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.comparison-table th, .comparison-table td {
    padding: 10px;
    text-align: center;
}

.comparison-table th {
    background-color: #f8f8f8;
}

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

.product-logo {
    max-width: 50px;
    height: auto;
}

.case-studies {
    width: 80%;
    margin: 20px auto;
    margin-bottom: 20px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.case-studies h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.case-study {
    background: #ffffff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.case-study-header h3 {
    margin: 0;
    font-size: 1.5em;
}

.case-study-header p {
    margin: 5px 0 15px;
    font-size: 1em;
    color: #555;
}

.case-study-body {
    display: flex;
    flex-wrap: wrap;
}

.case-study-image img {
    max-width: 100%;
    height: auto;
    margin: 0 10px 10px 0;
    border-radius: 5px;
}

.case-study-text {
    flex: 1;
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

  /* Responsiveness Configs */

  @media (max-width: 1024px) {
    .hero-section{
         width: 80%;
         max-width: 100%;
         padding: 20px;
     }
     .faq-section, .review-section, .explanation-section, .static-section {
         width: 80%;
         padding: 20px;
         border-radius: 10px;
     }
    .hero-text, .hero-image {
         flex-basis: 100%;
         width: 80%;
         text-align: center;
     }
    .hero-content {
         flex-direction: column;
         align-items: center;
     }
    .form-container form {
         margin-top: 0;
     }
     .download-button, .download-svg-button {
         display: block !important;
         position: static; /* Remove absolute positioning */
         margin-top: 10px; /* Add space between the image and button */
         width: calc(100% - 40px); /* Add some padding so it doesn't touch the screen edges */
         max-width: 90%; /* Ensure the button doesn't overflow its container */
         text-align: center; /* Center align the text */
         box-sizing: border-box; /* Ensure padding is included within the width */
     }
     .curvy-badge {
         left: 50%;
         transform: translateX(-50%);
         text-align: center;
     }
     #logo-container {
         flex-direction: row;
         align-items: center;
         justify-content: space-between;
         padding: 15px 20px;
         width: 90%;
         margin-bottom: 40px;
         position: relative;
     }

     #logo {
         height: 50px;
         margin-bottom: 0;
     }

     /* Show hamburger menu button on mobile */
     #mobile-menu-toggle {
         display: flex;
     }

     #navigation-links {
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         background-color: #fff;
         flex-direction: column;
         width: 100%;
         max-height: 0;
         overflow: hidden;
         opacity: 0;
         transition: max-height 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
         box-shadow: none;
         border-radius: 0 0 10px 10px;
         margin-top: 10px;
     }

     #navigation-links.mobile-menu-open {
         max-height: 500px;
         opacity: 1;
         box-shadow: 0 8px 16px rgba(0,0,0,0.1);
         padding: 10px 0;
     }

     #navigation-links a {
         margin: 0;
         padding: 12px 20px;
         border-bottom: 1px solid #f0f0f0;
         font-size: 15px;
         display: block;
         text-align: left;
     }

     #navigation-links a:last-child {
         border-bottom: none;
     }

     #navigation-links a:hover {
         background-color: #f8f8f8;
     }

     #navigation-links .premium-button {
         margin: 10px 20px;
         text-align: center;
         border-radius: 20px;
     }

     #navigation-links .auth-link {
         margin: 5px 20px;
     }
 
     .how-to-section {
         flex-direction: column;
     }
 
     .how-to-step {
         flex-basis: 100%;
         margin-bottom: 20px;
     }
     .snip1533 {
         width: calc(100% - 20px);
         margin: 10px;
       }
    .explanatory-section {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start */
        text-align: center; /* Center text horizontally */
    }
    .explanatory-text {
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add bottom margin */
        text-align: left; /* Align text to the left */
    }
    .explanatory-image img {
        max-width: 100%; /* Allow the image to take the full width */
    }
    .comparison-table {
        width: 80%;
        font-size: 12px; /* Adjust font size for better readability */
        border-radius: 10px;
    }

    .comparison-table th, .comparison-table td {
        padding: 6px;
        border-radius: 10px;
    }

    .comparison-table th, .comparison-table td {
        display: block;
        text-align: left;
    }

    .comparison-table th {
        display: none; /* Hide table headers on very narrow screens */
    }

    .comparison-table tr {
        display: block;
        margin-bottom: 8px;
        border-bottom: 1px solid #ddd;
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        padding: 6px;
    }

    .comparison-table td:before {
        content: attr(data-label);
        flex: 1;
        font-weight: bold;
    }
 }

.static-section {
    width: 80%;
    max-width: 1350px;
    margin-bottom: 20px;
    position: relative; /* Add this to contain absolute positioned elements */
}

/* Grow.me Privacy Statement Styles */
[data-grow-privacy-notice] {
    background: #f8f8f8;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

[data-grow-privacy-notice] a {
    color: #94C003;
    text-decoration: none;
}

[data-grow-privacy-notice] a:hover {
    text-decoration: underline;
}

/* Ensure proper spacing in mobile view */
@media (max-width: 1024px) {
    [data-grow-privacy-notice] {
        margin: 15px 0;
        padding: 12px 15px;
    }
}