* {
    margin: 0;
    padding: 0;
    font-family: 'Markazi Text', serif;

}

body {
    background-color: #000000;
    height: 100%;
    overflow-y: scroll; /* Allow vertical scrolling */
    font-size: 1rem;
    position: relative;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling */
    height: 100%;
    scroll-snap-type: y proximity; /* Enable scroll snapping on vertical axis */
    font-size: 100%;
}


.header{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.363), rgba(0, 0, 0, 2)),
    url(images/benz.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 50px;
    overflow: hidden;}

.nav{
    position: fixed;
    }
nav {
    left: 0;
    width: 100%;
    height: 0%;
    padding: 20px 10px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.9); /* Dark, not fully transparent */
    display: flex;
    justify-content: space-between;
    align-items: center;
     /* Already had this */
}

  
  
nav img{
    width: 120px;
}
.nav-links{
    flex: 1;
    text-align: right;
    position: relative;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;        /* Use rem for scaling with user settings */
    display: inline-block;     /* Good — makes area clickable */
    padding: 0.75rem .7rem;   /* Responsive padding (scales with font size) */
    line-height: 1.5;
    cursor: pointer;           /* Gives user feedback it's clickable */
    transition: background 0.3s ease; /* Smooth hover feel */
}


.nav-links ul li::after{
    content: "";
    width: 0%;
    height: 2px;
    background: #302d2d;
    display: block;
    margin: auto;
    transition: 0.7s;
    position:static
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box {
    width: 90%;
    color: #ffffff;
    position: absolute;
    top: 20%; /* Try 40%, 50%, etc. */
    left: 50%;
    transform: translateX(-50%); /* Only center horizontally */
    text-align: center;
}

.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 17px;
    color: #ffffff;
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 17px;
    background: transparent;
    cursor: pointer;
    font-weight: bold;
    

}
.hero-btn:hover{
    border: 1px solid #525050;
    background: #94b6b6;
    transition: 1s;
}

nav.fa{
    display: none;
}


@media (max-width: 700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #000000;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;

    }
    nav .fa{
        display:block;
        color: #ffffff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }

    .gallery{
        display: none;
    }


    .package {
        padding: 20px;
        text-align: center;
    }

    .package h1 {
        font-size: 22px;
    }

    .package p {
        font-size: 16px;
        margin: 10px 0;
    }

    .dropdown {
        width: 90%;
        max-width: 300px;
        margin: 10px auto;
        padding: 10px;
        font-size: 16px;
    }

    .package-content {
        padding: 10px;
        width: 90%;
        margin: 0 auto;
        font-size: 16px;
        display: flex;
        flex-direction: column; /* Stack image on top of text */ 
        align-items: center;
    }

    .package-description {
        display: none;
    }

    .package-content img {
        width: 90%;
        max-width: 300px;
        margin-bottom: 15px;
    }

    .package-content p, .package-content h2 {
        font-size: 16px;
        margin: 5px 0;
    }

    

    .package-content p.pricing {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: left;             /* Align text to the left */
        align-self: flex-start;       /* Physically move the block to the left */
        white-space: nowrap;
        font-size: 14px;
    
    }
    
    
    
    
    
    
    

}
/* ------ package ----- */

/* Make the whole section fill the screen */
.package {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;  /* Position elements relative to the section */
    overflow: hidden;    /* Prevents anything from overflowing out of the section */
    background-color: #000;  /* Dark background to set the stage for stars */
    scroll-snap-align: start;
}

/* Overlay for text and dropdown */
.overlay {
    text-align: center;
    color: rgb(255, 255, 255);
    position: absolute;  /* Positions content over the background */
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);  /* Correct centering */
    z-index: 5;  /* Ensures the text and dropdown are above the stars */
}

/* Style for text */
.package h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 125px;
}

.package p {
    font-size: 1.5rem;
    margin-top: 10px;
    color: rgb(255, 255, 255);
}

/* Styling for All Services content */
.show-all-services {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;     /* Center the content vertically */
    flex-direction: column;  /* Stack content vertically */
    text-align: center;     /* Center the text */
    margin-top: -10px;
}

/* Styling for the service list */
.all-services-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: white;
    font-size: 20px;
    text-align: center;  /* Center the list */
}
.extras-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 800px;
    color: white;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
}

.extras-header {
    display: contents;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 2px solid white;
    margin-bottom: 10px;
}

.extras-row {
    display: contents;
}

.extras-row > div,
.extras-header > div {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



/* Styling for the title */
.all-services-content h2 {
    font-size: 2rem;
    color: #fafafa;
    margin-bottom: 20px;
}



/* Dropdown styling */
.dropdown {
    font-size: 1.2rem;
    text-align: center;
    padding: 10px;
    background-color: #3a3939; /* Green background */
    color: white; /* Text color */
    font-weight: bold;
    border: 2px solid #ffffff;
    border-radius: 5px;
    width: 200px;
    cursor: pointer;
    margin-top: 20px;
    
}

/* Style the dropdown options */
.dropdown option {
    font-size: 1.2rem;
    padding: 10px;
    background-color: #3a3939; /* White background for options */
    color: #ffffff; /* Text color */
    font-weight: bold;
}


/* Use flexbox to position the boxes on the left and right of the screen */
.package-content {
    display: flex;
    justify-content: space-between;  /* Spread the items across the container */
    width: 80%;  /* Adjust to your needs */
    top: 50px;  /* This will add space above the boxes, pushing them down */
    gap: 20px;  /* Add spacing between the two columns */
    position: absolute;
    top: 40%; 
    z-index: 2;
}

.package-heading {
    border-bottom: 2px solid #94b6b6;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: center;
}


.package-content ul{
    list-style-type: none;  /* Ensures the bullet points appear */
    color: rgba(255, 255, 255, 0.959);           /* Bullet points and text will be white */
    font-size: 25px;      /* Increase font size */
    font-weight: bold;
    margin-top: -40px;
    padding-top: 0;
    
}
.package-description {
    font-size: 15px !important;  /* Enforce the font size */
    color: #ffffff !important;     /* Enforce the text color */
    font-family: 'Arial', sans-serif !important; /* Enforce the font family */
    text-align: center;
    font-weight: bold;
    padding: 0;
    margin-bottom: 5px;
    padding-bottom: 0;
    
}

.package-title {
    font-size: 2rem;
    color: #ffffff;
}

.package-pricing {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: -10px;
    
}




.package-content ul li {
    margin-bottom: 10px; /* Adds space between the bullet points */

}

/* Left and right columns */
.package-content .column {
    width: 48%;  /* Adjust width to fit the boxes side by side */
    color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0, 0.1); /* Fully opaque background */
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    
}

/* Image inside the grid */
.package-content .column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 5px solid #525050;  /* Adds a white border around the image */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);  /* Optional: Adds a subtle shadow around the image for extra emphasis */
}

/* Text container inside each grid item */
.package-content .column .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  /* Center text inside column */
    text-align: center;   /* Center text horizontally */
    background-color: rgba(255, 255, 255, 0.8); /* Light background for text */
    padding: 15px;  /* Add padding inside the text column */
    border-radius: 10px; /* Rounded corners for the text section */
}
.package-content .column .package-pricing {
    font-size: 1.5rem;
    margin-top: 5px;
    color: #ffffff;
    font-weight: bold; /* optional if you want it bold */
}


.package-content .column p {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}

.package-content p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Starry background */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1; /* Place it below the text */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.2; }
}

.star {
    position: absolute;
    background-color: #ffffff;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out;
}






















































h1 {
    font-size: 38px;
    font-weight: 600;
}

p {
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}




/* Mobile responsiveness */
@media (max-width: 700px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
}


.gallery {
    width: 100%;
    margin: auto;
    text-align: center;
    height: 100vh;
    background-color: #000;
  }
  
  .gallery h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    grid-auto-rows: 225px;
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
  }

  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 15px;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  /* Custom sizes for variety */
  .gallery-item.wide {
    grid-column: span 2;
  }
  
  .gallery-item.tall {
    grid-row: span 2;
  }
  
  /* Responsive fallback if screen is too small */
  @media (max-width: 768px) {
    .gallery-item.wide,
    .gallery-item.tall {
      grid-column: span 1;
      grid-row: span 1;
    }
  }
  


/* Testimonials 

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #6d6d6d;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 3);
}
.testimonial-row {
    display: flex;
    gap: 20px;  "actual gap between cards" 
}

.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
    margin: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #e9ff6a
} 
@media(max-width: 700px){
    .testimonial-col img{
        margin-left: 0;
        margin-right: 15px;
        flex-direction: column;
    }
}  */

.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
/* call to action */

.cta{
    margin: 100px auto;
    width: 100%;
    height: 20%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.2)), url(images/m4.jpg);
    background-position: center 45%;
    background-size: cover;
    border-radius: 10px;
    padding: 100px 0;
    text-align: center;
}


@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*-----footer----*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    color: white;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    color: white;
}
.footer p{
    color: white;
}
.icons .fa{
    color: #ffffff;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart{
    color: #860000;
}
.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cta-btn {
    margin-top: 275px; /* 👈 Only this button moves down */
}

/* Schedule button clickable style */

/* Modal background (dark) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}


.modal-content {
    background: #111;
    color: #fff;
    border-radius: 12px;
    width: 95%;
    max-width: 900px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin: auto;
    position: relative;
    font-family: 'Inter', sans-serif;
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
  
.modal-content > * {
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #1f1f1f;
    color: #fff;
    box-sizing: border-box;
  }
  
  /* Close button (top-right corner) */
  .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 45px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .modal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  /* Inputs and selects */
  .modal-content input[type="text"],
  .modal-content input[type="email"],
  .modal-content input[type="date"],
  .modal-content select,
  .modal-content input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #444;
    border-radius: 10px;
    background-color: #2a2a2a;
    color: white;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
  }
  
  .modal-content input:focus,
  .modal-content select:focus {
    border-color: #888;
  }
  
  /* File input styling */
  .modal-content input[type="file"] {
    background-color: #fff;
    color: #000;
  }
  
  /* Submit button */
  #submitBtn {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    font-size: 16px;
    border-radius: 6px;
    background-color: #e63946;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  #submitBtn:hover {
    background-color: #ff5c63;
  }
  
  /* Error messages */
  .error-message {
    display: none;
    color: #e63946;
    font-size: 14px;
    margin-top: 5px;
  }
  
  /* Checkbox layout */
  .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .checkbox-item {
    display: flex;
    align-items: center;
  }
  
  .checkbox-item input[type="checkbox"] {
    appearance: none;
    background-color: white;
    border: 1px solid #ccc;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    position: relative;
    margin-right: 8px;
    cursor: pointer;
  }
  
  .checkbox-item input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    left: 4px;
    top: -1px;
    font-size: 14px;
    color: black;
  }
  


/* error for missing required fields */

.input-error-message {
    display: none;
    color: red;
    font-size: 0.9rem;
    margin-top: 4px;
  }  

.error-message {
    display: none;
    color: #e63946;
    font-size: 0.9rem;
    margin-top: 4px;
    align-items: center;
  }
  
  /*.error-icon {
    background-color: #e63946;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
    margin-right: 6px;
    font-size: 0.8rem;
  }
    */
  
  .input-error {
    border: 1px solid #e63946;
  }


#scheduleForm {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

#scheduleForm .full-width {
    grid-column: 1 / -1;
}
#fileList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
}

.file-preview-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#clearPhotosBtn {
    width: auto;
    padding: 6px 12px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#clearPhotosBtn:hover {
    background-color: #666;
}

  /* === Schedule Modal: Better Form Layout === */
#scheduleForm label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

#scheduleForm input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    border: 1px solid #ccc; /* light border */
    width: 18px;
    height: 18px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

#scheduleForm input[type="checkbox"]:checked::after {
    content: '✔';
    color: black;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 3px;
}

#scheduleForm input[type="file"] {
    background-color: #fff;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#scheduleForm input[type="text"],
#scheduleForm input[type="email"],
#scheduleForm input[type="date"],
#scheduleForm select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#scheduleForm button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#scheduleForm #clearPhotosBtn {
    width: auto;
    margin-top: 10px;
    padding: 6px 20px;
    margin-left: auto;
}

/* Change cursor to pointer on hover for interactive fields */
#date:hover,
#time:hover,
#service:hover,
#carPhoto:hover {
    cursor: pointer;
}

/* Make only the calendar icon inside the date picker clickable */
#date::-webkit-calendar-picker-indicator {
    filter: invert(1); /* white icon */
    cursor: pointer;
}

  

  /* admin dash */

  .fullpage-section {
    display: none;
    position: fixed;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: #000000;
    color: white;
    z-index: 10000;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 55px;
}

.fullpage-section.show {
    display: flex;
}

.fullpage-section p {
    color: white;
}

.faq-tab {
    width: 80%;
    margin: 25px auto;
    background-color: #1f1f1f00;
    color: white;
    border: 3px solid #ffffff9a;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    font-size: 25px;
}

.faq-question {
    padding: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arrow-icon {
    font-size: 30px;
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}


.faq-tab.open .arrow-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #000000;
}

/* Show the answer when the tab is open */
.faq-tab.open .faq-answer {
    display: block;
}

/* Add underline when tab is open */
.faq-tab.open .faq-question {
    border-bottom: 2px solid rgb(112, 112, 112);
    padding-bottom: 10px;
    margin-bottom: 10px;
}




.faq-container{
    width: 100%;
}

.section-content {
    padding-bottom: 25px;  /* Pushes everything inside down */
}

.close-btn {
    padding: 10px 20px;
    border: 2px solid #ffffff9a;       /* White border */
    background: transparent;       /* Transparent background */
    color: white;                  /* White text */
    border-radius: 8px;            /* Rounded edges */
    cursor: pointer;               /* Pointer on hover */
    transition: background 0.3s, color 0.3s; /* Smooth hover effect */
    font-weight: bold;
}

/* Optional Hover Effect */
.close-btn:hover {
    background: white;
    color: rgb(66, 66, 66);
}



.about-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.about-overlay.show {
    display: flex;
}

.about-content {
    max-width: 600px;
    background: #1f1f1f;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid white;
}

.about-content p{
    color: white;
}

.contact-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.contact-overlay.show {
    display: flex;
}

.contact-content {
    max-width: 600px;
    background: #1f1f1f;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid white;
}

.contact-content p {
color: white;
}

.contact-content h1 {
    color: white;
    font-size: 25px;
}






















  /* admin dash */
  .admin-dashboard * {
    color: white;
  }

  .appointments-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers horizontally */
    justify-content: center;
    padding: 20px;
}

  .appointment-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 80%;

}
.appointment-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}
.appointment-card p {
    margin: 5px 0;
}
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
  }
  
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
  }
  
  .checkbox-item input[type="checkbox"]:checked::after {
    content: "✔";
    position: absolute;
    top: 1px;
    left: 4px;
    font-size: 14px;
    color: black;
  }
  
  .checkbox-item label {
    font-size: 16px;
    line-height: 1;
  }
  

  .site-footer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -230%;  /* Move it higher, 90% away from the bottom */
    background: transparent;
    padding: 10px 0;
    text-align: center;
    font-size: 25px;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.footer-links a:hover {
    text-decoration: underline;
}



body {
    overflow-x: hidden; /* Prevent sideways scrolling */
}

img {
    max-width: 100%;
    height: auto;
}

