body {
    font-family: 'Lexend Deca', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #550838;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.banner {
    display: flex;
    align-items: center;
    background-color: #550838;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 44px;
    width: 184px;
}

nav ul {
    list-style-type: none;
    margin-right: 0px;
    padding: 0;
    display: flex;
    left: -10px;
}

nav ul li {
    margin-right: 0px;
    margin-left: 90px;
    font-size: 12px;
    text-align: center;
    align-items: center;
    left: -10px;
    display: flex;
}

nav ul li:first-child {
    margin-left: -10;
    align-items: center;
    display: flex;
}

nav ul li a {
    margin-right: 0px;
    color: white;
    text-decoration: none;
    display: flex;
}

.hamburger-menu {
    display: none;
    color: white;
    cursor: pointer;
}

/* HOMEBANNER */

.container1 {
    position: relative;
    width: 100%;
}

.background-image {
    background-image: url('../img/accessories.png');
    background-size: cover;
    background-position: center;
    height: 350px; /* Adjust the height as needed */
    color: white; /* Text color */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.background-image p {
    font-size: 40px; /* Adjust the font size as needed */
    font-weight: bold;
    letter-spacing: 2px;
}

.container {
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
    text-align: center; /* Center-align the text */
}

.container h1 {
    margin-top: 40px;
    font-size: 11px; /* Adjust the font size as needed */
    color: #550838;
}

.container p {
    margin-top: 0px;
    font-size: 15px; /* Adjust the font size as needed */
    line-height: 2.0; /* Adjust the line height as needed */
    color: #575757;
    padding: 20px;
}

.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.product + .product {
    margin-left: 30px; /* Adjust as needed */
}

.product {
    width: calc(20% - 20px); /* Adjust width as needed */
    height: 230px;
    margin-bottom: 20px;
    text-align: center;
    border: solid 1px #c7c7c7;
    border-radius: 10px;
    position: relative;
}

.product img {
    width: 120px;
    height: 120px; /* Adjust height as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
}

.product p {
    margin-top: 10px;
    color: #444444;
    font-size: 16px ;
}

/* Add this CSS to your existing styles.css file or link a new one */

.product-nav {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}
.product-box {
    flex: 1;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: solid 1px #c7c7c7;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.product-box:hover {
    transform: scale(1.05);
}
.product + .product {
    margin-left: 30px; /* Adjust as needed */
}
.image {
    width: 30%;
    height: auto;
    margin-left: -10px;
}
.title {
    margin-left: 0px;
    padding: 10px;
    font-weight: normal;
    margin-left: 10px;
    flex: 1;
    color: #575757;
    font-size: 14px;
}
a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.checkbox {
    position: absolute; /* Set the position of the checkbox to absolute */
    top: 10px; /* Adjust the top position as needed */
    right: 10px; /* Adjust the left position as needed */
}

#flexFormContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-width: 400px;
    width: 100%;
    justify-content: center;
  }
  
  #flexForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center items horizontally */
  }
  
  img {
    width: 173px;
    height: 52px;
  }
  
  .formGroup {
    margin-bottom: 20px; /* Increased margin for better separation */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .formGroup label {
    margin-bottom: 5px; /* Spacing between label and input */
    font-size: 13px;
    color: #444444;
    margin-top: 10px;
  }
  
  .formGroup input,
  .formGroup textarea {
    width: 100%; /* Ensure input fields take up full width */
    padding: 8px; /* Adjust padding as needed */
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .formGroup input {
    width: 300px;
    font-family: 'Lexend Deca', sans-serif;
  }

  #flexForm textarea {
    width: 300px;
    resize: vertical; /* Only allow vertical resizing */
    font-family: 'Lexend Deca', sans-serif;
  }  
  
  #flexForm button[type="submit"] {
    background-color: #550838;
    color: white;
    padding: 10px 50px;
    border: none;
    cursor: pointer;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 13px;
    margin-bottom: 15px;
    margin-left: 130px; /* Add this line */
    margin-right: 130px; /* Add this line */
  }
  
  #flexForm button[type="submit"]:hover {
    background-color: #7e255c; /* Darker blue on hover */
  }
  
  #closeFormButton {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  #showFormButton {
    background-color: #550838;
    color: #fff;
    padding: 20px 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 13px;
  }
  
  #showFormButton:hover {
    background-color: #7e255c;
  }
  
  .hidden {
    display: none;
  }
  
  .button-container {
    display: flex; /* Use flexbox to center the button horizontally and vertically */
    justify-content: center; /* Center the button horizontally */
    align-items: center; /* Center the button vertically */
    margin-top: 20px; /* Add some margin at the top */
    margin-bottom: 20px; /* Add some margin at the top */
  }
  

/* FLOATING BUTTONS */

.floating-fb-btn1 {
    position: fixed;
    bottom: 160px;
    right: 16px;
    background-color: #550838;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.floating-fb-btn1 img {
    width: 70%;
    height: auto;
}

.floating-fb-btn1:hover {
    background-color: #8a0958;
    color: #ffffff;
}

.floating-fb-btn {
    position: fixed;
    bottom: 100px;
    right: 16px;
    background-color: #550838;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.floating-fb-btn img {
    width: 70%;
    height: auto;
}

.floating-fb-btn:hover {
    background-color: #8a0958;
    color: #ffffff;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #01D20C;
    color: #ffffff;
    width: 42px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }
  
  .custom-button1 {
    font-family: 'Lexend Deca', sans-serif;
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-button1:hover {
    background-color: #ffffff;
    color: #550838;
}

/* FOOTER */

footer {
    position: relative; /* Add position relative to the footer */
    height: 350px;
    background-color: #550838;
    padding: 20px;
    text-align: center;
    display: block;
}

.logo1 {
    margin-bottom: 20px;
}

.logo1 img {
    height: 71px;
    width: 300px;
    position: relative;
    top: 50px;
    left: -450px;
}

.buttons1 {
    margin-bottom: 100px;
    margin-left: -600px;
    margin-top: 60px;
}

.button1,
.button2 {
    display: block; /* Change buttons to block-level elements */
    width: 200px; /* Adjust width as needed */
    padding: 15px 40px;
    transition: background-color 0.5s ease;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: white;
    border-radius: 5px;
    margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
    cursor: pointer;
    text-decoration: none; /* Remove default link underline */
}

.button1:hover,
.button2:hover {
    background-color: #ffffff; /* Darker green on hover */
    color: #550838;
}

.footer-links1 {
    list-style-type: none;
    padding: 0;
    margin-left: 100px;
    text-align: left;
    line-height: 2.5;
    position: absolute; /* Change position to absolute */
    bottom: 20px; /* Adjust bottom spacing as needed */
    left: 50%; /* Place links horizontally centered */
    transform: translateX(-140%); /* Center links horizontally */
    top: 65px;
}

.footer-links1 li {
    display: block;
    position: relative;
}

.footer-links1 li a {
    color: white;
    text-decoration: none;
}

.footer-links1 li a:hover {
    color: #e3ce12;
    text-decoration: none;
}

.footer-links1 li h7 {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 1.4px;
}

.footer-links2 {
    list-style-type: none;
    padding: 0;
    margin-left: 20px;
    text-align: left;
    line-height: 2.5;
    max-width: 430px;
    position: absolute; /* Change position to absolute */
    bottom: 20px; /* Adjust bottom spacing as needed */
    left: 50%; /* Place links horizontally centered */
    transform: translateX(10%); /* Center links horizontally */
    top: 65px;
}

.footer-links2 li {
    display: block;
    position: relative;
}

.footer-links2 li a {
    color: white;
    text-decoration: none;
}

.footer-links2 li h7 {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 1.4px;
}

.footer-links2 li a:hover {
    color: #e3ce12;
    text-decoration: none;
}


 /*=================== MEDIA QUERIES =================== */

 @media only screen and (min-width: 0px) and (max-width: 400px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #550838;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 5px;
        margin-left: -20px;
        margin-top: 0;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 12px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .product-nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 80%;
        margin: 0 auto;
    }
    .product + .product {
        margin-left: 0px; /* Adjust as needed */
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 400px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center ;
    }
    .product img {
        width: 50%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 10px;
    }

    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }

    .product p {
        color: #444444;
        font-size: 14px;
        margin-bottom: 20px; /* Add margin between text and button */
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 8px 12px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 0px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    #showFormButton {
    padding: 15px 40px;
    font-size: 12px;
    }
    .container p {
        font-size: 12px;
    }
    .title {
        font-size: 12px;
    }
    .product-box {
        flex: 1;
        margin: 0 10px;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        border: solid 1px #c7c7c7;
        transition: transform 0.3s ease-in-out;
        margin-bottom: 10px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 200px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 160px;
        height: 7px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 11px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 160px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 11px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 8px 40px;
        font-size: 11px;
      }
      .formGroup label {
        font-size: 11px;
      }
      img {
        width: 131px;
        height: 39px;
      }
      footer {
        justify-content: center;
        height: 550px;
        background-color: #550838;
        text-align: center;
        display: block;
    }
    
    .logo1 {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: -60px;
    }
    .logo1 img {
        justify-content: center;
        height: 44px;
        width: 184px;
        margin-right: -900px;
    }
    
    .buttons1 {
        position: relative;
        align-content: center;
        margin-left: 5px;
        margin-top: 40px;
    }
    
    .button1,
    .button2 {
        display: block; /* Change buttons to block-level elements */
        width: 175px; /* Adjust width as needed */
        padding: 10px 30px;
        margin-left: -20px;
        background-color: transparent;
        border: 2px solid #ffffff;
        color: white;
        font-size: 13px;
        border-radius: 5px;
        margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
        cursor: pointer;
        text-decoration: none; /* Remove default link underline */
    }
    
    .button1:hover,
    .button2:hover {
        background-color: #ffffff; /* Darker green on hover */
        color: #550838;
    }
    
    .footer-links1 {
        list-style-type: none;
        padding: 0;
        margin-left: 165px;
        text-align: left;
        line-height: 2.5;
        font-size: 13px;
        width: 200px;
        max-width: 250px;
        height: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 200px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        top: 200px;
    }
    
    .footer-links1 li {
        display: block;
        position: relative;
    }
    
    .footer-links1 li a {
        color: white;
        text-decoration: none;
    }
    
    .footer-links1 li a:hover {
        color: #ffe16b;
        text-decoration: none;
    }
    
    .footer-links1 li h7 {
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
    
    .footer-links2 {
        list-style-type: none;
        padding: 0;
        margin-left: -135px;
        text-align: left;
        line-height: 2.0;
        max-width: 200px;
        position: absolute; /* Change position to absolute */
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        transform: translateX(10%); /* Center links horizontally */
        top: 420px;
    }
    
    .footer-links2 li {
        display: block;
        position: relative;
    }
    
    .footer-links2 li a {
        font-size: 13px;
        color: white;
        text-decoration: none;
    }
    
    .footer-links2 li h7 {
        font-size: 13px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }

}

 @media only screen and (min-width: 401px) and (max-width: 500px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #550838;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0px;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        opacity: 1;
        max-height: 80px;
        transition: max-height 0.3s ease;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 12px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 150px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 15px;
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center;
    }
    .product img {
        width: 50%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 10px;
    }
    .product + .product {
        margin-left: 15px;
    }
    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }
    .product p {
        color: #444444;
        font-size: 13px;
        margin-bottom: 20px; /* Add margin between text and button */
        padding-left: 15px;
        padding-right: 15px;
    }
    #showFormButton {
        padding: 15px 40px;
        font-size: 12px;
        }
    .product-nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 70%;
        margin: 0 auto;
        }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 10px 25px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .container p {
        font-size: 13px;
    }
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 200px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 160px;
        height: 7px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 11px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 160px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 11px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 8px 40px;
        font-size: 11px;
      }
      .formGroup label {
        font-size: 11px;
      }
      img {
        width: 131px;
        height: 39px;
      } 
      footer {
        justify-content: center;
        height: 550px;
        background-color: #550838;
        text-align: center;
        display: block;
    }
    
    .logo1 {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: -60px;
    }
    .logo1 img {
        justify-content: center;
        height: 44px;
        width: 184px;
        margin-right: -900px;
    }
    
    .buttons1 {
        position: relative;
        align-content: center;
        margin-left: 5px;
        margin-top: 40px;
    }
    
    .button1,
    .button2 {
        display: block; /* Change buttons to block-level elements */
        width: 175px; /* Adjust width as needed */
        padding: 10px 30px;
        margin-left: -20px;
        background-color: transparent;
        border: 2px solid #ffffff;
        color: white;
        font-size: 13px;
        border-radius: 5px;
        margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
        cursor: pointer;
        text-decoration: none; /* Remove default link underline */
    }
    
    .button1:hover,
    .button2:hover {
        background-color: #ffffff; /* Darker green on hover */
        color: #550838;
    }
    
    .footer-links1 {
        list-style-type: none;
        padding: 0;
        margin-left: 165px;
        text-align: left;
        line-height: 2.5;
        font-size: 13px;
        width: 200px;
        max-width: 250px;
        height: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 200px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        top: 200px;
    }
    
    .footer-links1 li {
        display: block;
        position: relative;
    }
    
    .footer-links1 li a {
        color: white;
        text-decoration: none;
    }
    
    .footer-links1 li a:hover {
        color: #ffe16b;
        text-decoration: none;
    }
    
    .footer-links1 li h7 {
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
    
    .footer-links2 {
        list-style-type: none;
        padding: 0;
        margin-left: -135px;
        text-align: left;
        line-height: 2.0;
        max-width: 200px;
        position: absolute; /* Change position to absolute */
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        transform: translateX(10%); /* Center links horizontally */
        top: 420px;
    }
    
    .footer-links2 li {
        display: block;
        position: relative;
    }
    
    .footer-links2 li a {
        font-size: 13px;
        color: white;
        text-decoration: none;
    }
    
    .footer-links2 li h7 {
        font-size: 13px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
 }

@media only screen and (min-width: 501px) and (max-width: 600px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #550838;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 14px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .product-nav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 70%;
        margin: 0 auto;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 140px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 10px;
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center ;
    }
    .product img {
        width: 60%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 15px;
    }
    .product + .product {
        margin-left: 10px;
    }
    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }
    .product p {
        color: #444444;
        font-size: 13px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px; /* Add margin between text and button */
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 25px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    #showFormButton {
        padding: 15px 40px;
    }
    .container p {
        font-size: 13px;
    }
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 300px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 250px;
        height: 7px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 12px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 250px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 12px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 8px 40px;
        font-size: 12px;
      }
      .formGroup label {
        font-size: 12px;
      }
      img {
        width: 131px;
        height: 39px;
      }
      footer {
        justify-content: center;
        height: 600px;
        background-color: #550838;
        text-align: center;
        display: block;
    }
    
    .logo1 {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: -60px;
    }
    .logo1 img {
        justify-content: center;
        height: 66px;
        width: 276px;
        margin-right: -900px;
    }
    
    .buttons1 {
        position: relative;
        align-content: center;
        margin-left: 5px;
        margin-top: 40px;
    }
    
    .button1,
    .button2 {
        display: block; /* Change buttons to block-level elements */
        width: 250px; /* Adjust width as needed */
        padding: 15px 40px;
        margin-left: -20px;
        background-color: transparent;
        border: 2px solid #ffffff;
        color: white;
        font-size: 14px;
        border-radius: 5px;
        margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
        cursor: pointer;
        text-decoration: none; /* Remove default link underline */
    }
    
    .button1:hover,
    .button2:hover {
        background-color: #ffffff; /* Darker green on hover */
        color: #550838;
    }
    
    .footer-links1 {
        list-style-type: none;
        padding: 0;
        margin-left: 120px;
        text-align: left;
        line-height: 2.5;
        font-size: 16px;
        width: 200px;
        max-width: 250px;
        height: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 200px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        top: 240px;
    }
    
    .footer-links1 li {
        display: block;
        position: relative;
    }
    
    .footer-links1 li a {
        color: white;
        text-decoration: none;
    }
    
    .footer-links1 li a:hover {
        color: #ffe16b;
        text-decoration: none;
    }
    
    .footer-links1 li h7 {
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
    
    .footer-links2 {
        list-style-type: none;
        padding: 0;
        margin-left: -190px;
        text-align: left;
        line-height: 2.0;
        max-width: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        transform: translateX(10%); /* Center links horizontally */
        top: 500px;
    }
    
    .footer-links2 li {
        display: block;
        position: relative;
    }
    
    .footer-links2 li a {
        font-size: 16px;
        color: white;
        text-decoration: none;
    }
    
    .footer-links2 li h7 {
        font-size: 16px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
 }

 @media only screen and (min-width: 601px) and  (max-width: 700px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #550838;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 14px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .product-nav {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
    }
    .product-box + .product-box {
        margin-left: 0px;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 140px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 10px;
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center ;
    }
    .product img {
        width: 60%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 15px;
    }
    .product + .product {
        margin-left: 10px;
    }
    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }
    .product p {
        color: #444444;
        font-size: 13px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px; /* Add margin between text and button */
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 40px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .image {
        width: 100%;
        height: auto;
        margin-left: 0px;
    }
    .title {
        display: none;
    }
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 300px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 250px;
        height: 10px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 250px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 10px 45px;
        font-size: 12px;
      }
      .formGroup label {
        font-size: 13px;
      }
      img {
        width: 150px;
        height: 44px;
      }
      footer {
        justify-content: center;
        height: 600px;
        background-color: #550838;
        text-align: center;
        display: block;
    }
    
    .logo1 {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: -60px;
    }
    .logo1 img {
        justify-content: center;
        height: 66px;
        width: 276px;
        margin-right: -900px;
    }
    
    .buttons1 {
        position: relative;
        align-content: center;
        margin-left: 5px;
        margin-top: 40px;
    }
    
    .button1,
    .button2 {
        display: block; /* Change buttons to block-level elements */
        width: 250px; /* Adjust width as needed */
        padding: 15px 40px;
        margin-left: -20px;
        background-color: transparent;
        border: 2px solid #ffffff;
        color: white;
        font-size: 14px;
        border-radius: 5px;
        margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
        cursor: pointer;
        text-decoration: none; /* Remove default link underline */
    }
    
    .button1:hover,
    .button2:hover {
        background-color: #ffffff; /* Darker green on hover */
        color: #550838;
    }
    
    .footer-links1 {
        list-style-type: none;
        padding: 0;
        margin-left: 120px;
        text-align: left;
        line-height: 2.5;
        font-size: 16px;
        width: 200px;
        max-width: 250px;
        height: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 200px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        top: 240px;
    }
    
    .footer-links1 li {
        display: block;
        position: relative;
    }
    
    .footer-links1 li a {
        color: white;
        text-decoration: none;
    }
    
    .footer-links1 li a:hover {
        color: #ffe16b;
        text-decoration: none;
    }
    
    .footer-links1 li h7 {
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
    
    .footer-links2 {
        list-style-type: none;
        padding: 0;
        margin-left: -190px;
        text-align: left;
        line-height: 2.0;
        max-width: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        transform: translateX(10%); /* Center links horizontally */
        top: 500px;
    }
    
    .footer-links2 li {
        display: block;
        position: relative;
    }
    
    .footer-links2 li a {
        font-size: 16px;
        color: white;
        text-decoration: none;
    }
    
    .footer-links2 li h7 {
        font-size: 16px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
 }

 @media only screen and (min-width: 701px) and  (max-width: 800px) {
    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    }
    .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }   
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        position: fixed;
        display: inline-block;
        top: 0;
        left: 0;
        width: 100%;
        height: 13%;
        background-color: #550838;
        font-size: 11px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-right: 100px;
        padding-top: 5px;
    }

    nav ul.show {
        max-height: 500px;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    nav ul li {
        margin-right: 20px;
        margin-left: -10px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }

    nav ul li a {
        color: white;
        font-size: 16px;
        text-decoration: none;
        margin-right: 0px;
    }
    .hamburger-menu {
        display: block;
        margin-right: -20px;
        font-size: 24px;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 140px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 10px;
    }
    .products {
        margin-right: 20px;
        margin-left: 20px;
        justify-content: center ;
    }
    .product img {
        width: 60%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 15px;
    }
    .product + .product {
        margin-left: 10px;
    }
    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }
    .product p {
        color: #444444;
        font-size: 13px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px; /* Add margin between text and button */
    }
    .background-image {
        height: 200px;
    }
    .background-image p {
        font-size: 20px; /* Adjust the font size as needed */
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 40px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .image {
        width: 100%;
        height: auto;
        margin-left: 0px;
    }
    .title {
        display: none;
    }
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 300px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 250px;
        height: 10px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 250px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 10px 45px;
        font-size: 12px;
      }
      .formGroup label {
        font-size: 13px;
      }
      img {
        width: 150px;
        height: 44px;
      }
      footer {
        justify-content: center;
        height: 750px;
        background-color: #550838;
        text-align: center;
        display: block;
    }
    
    .logo1 {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: -60px;
    }
    .logo1 img {
        justify-content: center;
        height: 84px;
        width: 351px;
        margin-right: -900px;
    }
    
    .buttons1 {
        position: relative;
        align-content: center;
        margin-left: 5px;
        margin-top: 40px;
    }
    
    .button1,
    .button2 {
        display: block; /* Change buttons to block-level elements */
        width: 270px; /* Adjust width as needed */
        padding: 20px 45px;
        margin-left: -20px;
        background-color: transparent;
        border: 2px solid #ffffff;
        color: white;
        font-size: 18px;
        border-radius: 5px;
        margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
        cursor: pointer;
        text-decoration: none; /* Remove default link underline */
    }
    
    .button1:hover,
    .button2:hover {
        background-color: #ffffff; /* Darker green on hover */
        color: #550838;
    }
    
    .footer-links1 {
        list-style-type: none;
        padding: 0;
        margin-left: 100px;
        text-align: left;
        line-height: 2.5;
        font-size: 18px;
        width: 200px;
        max-width: 250px;
        height: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 200px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        top: 300px;
    }
    
    .footer-links1 li {
        display: block;
        position: relative;
    }
    
    .footer-links1 li a {
        color: white;
        text-decoration: none;
    }
    
    .footer-links1 li a:hover {
        color: #ffe16b;
        text-decoration: none;
    }
    
    .footer-links1 li h7 {
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
    
    .footer-links2 {
        list-style-type: none;
        padding: 0;
        margin-left: -210px;
        text-align: left;
        line-height: 2.0;
        max-width: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        transform: translateX(10%); /* Center links horizontally */
        top: 600px;
    }
    
    .footer-links2 li {
        display: block;
        position: relative;
    }
    
    .footer-links2 li a {
        font-size: 18px;
        color: white;
        text-decoration: none;
    }
    
    .footer-links2 li h7 {
        font-size: 18px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
 }

 @media only screen and (min-width: 801px) and  (max-width: 900px) {

    .logo {
        margin-left: -20px;
    }
    .logo img {
    height: 34px;
    width: 141px;
    } 
    .floating-fb-btn1 { 
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 135px;
    }
    .floating-fb-btn {
        bottom: 90px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    .scroll-to-top-button {
        bottom: 40px;
        right: 40px;
    }
    .content {
        height: 400px; 
    }
    nav ul {
        list-style-type: none;
        margin-right: 0px;
        padding: 0;
        display: flex;
        left: -10px;
    }
    
    nav ul li {
        margin-right: 0px;
        margin-left: 90px;
        font-size: 12px;
        text-align: center;
        align-items: center;
        left: -10px;
        display: flex;
    }
    
    nav ul li:first-child {
        margin-left: -10;
        align-items: center;
        display: flex;
    }
    
    nav ul li a {
        margin-right: 0px;
        color: white;
        text-decoration: none;
        display: flex;
    }
    .custom-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.5);
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .custom-button1 {
        font-family: 'Lexend Deca', sans-serif;
        display: inline-block;
        padding: 15px 40px;
        background-color: transparent;
        border: 1px solid #fff;
        border-radius: 5px;
        margin-left: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 170px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 10px;
    }
    .products {
        margin-right: 20px;
        margin-left: 10px;
        justify-content: center ;
    }
    .product img {
        width: 60%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 15px;
    }
    .product + .product {
        margin-left: 10px;
    }
    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }
    .product p {
        color: #444444;
        font-size: 13px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px; /* Add margin between text and button */
    }
    .image {
        width: 100%;
        height: auto;
        margin-left: 0px;
    }
    .title {
        display: none;
    }
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 350px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 270px;
        height: 10px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 270px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 15px 50px;
        font-size: 12px;
      }
      .formGroup label {
        font-size: 13px;
      }
      img {
        width: 150px;
        height: 44px;
      }
      .floating-btn {
        right: 10px;
        width: 38px;
        height: 60px;
    }
    footer {
        justify-content: center;
        height: 750px;
        background-color: #550838;
        text-align: center;
        display: block;
    }
    
    .logo1 {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: -60px;
    }
    .logo1 img {
        justify-content: center;
        height: 84px;
        width: 351px;
        margin-right: -900px;
    }
    
    .buttons1 {
        position: relative;
        align-content: center;
        margin-left: 5px;
        margin-top: 40px;
    }
    
    .button1,
    .button2 {
        display: block; /* Change buttons to block-level elements */
        width: 270px; /* Adjust width as needed */
        padding: 20px 45px;
        margin-left: -20px;
        background-color: transparent;
        border: 2px solid #ffffff;
        color: white;
        font-size: 18px;
        border-radius: 5px;
        margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
        cursor: pointer;
        text-decoration: none; /* Remove default link underline */
    }
    
    .button1:hover,
    .button2:hover {
        background-color: #ffffff; /* Darker green on hover */
        color: #550838;
    }
    
    .footer-links1 {
        list-style-type: none;
        padding: 0;
        margin-left: 100px;
        text-align: left;
        line-height: 2.5;
        font-size: 18px;
        width: 200px;
        max-width: 250px;
        height: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 200px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        top: 300px;
    }
    
    .footer-links1 li {
        display: block;
        position: relative;
    }
    
    .footer-links1 li a {
        color: white;
        text-decoration: none;
    }
    
    .footer-links1 li a:hover {
        color: #ffe16b;
        text-decoration: none;
    }
    
    .footer-links1 li h7 {
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
    
    .footer-links2 {
        list-style-type: none;
        padding: 0;
        margin-left: -210px;
        text-align: left;
        line-height: 2.0;
        max-width: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        transform: translateX(10%); /* Center links horizontally */
        top: 600px;
    }
    
    .footer-links2 li {
        display: block;
        position: relative;
    }
    
    .footer-links2 li a {
        font-size: 18px;
        color: white;
        text-decoration: none;
    }
    
    .footer-links2 li h7 {
        font-size: 18px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
 }

@media only screen and (min-width: 901px) and  (max-width: 1020px) {
    nav ul li a {
        color: white;
        margin-left: 30px;
        text-decoration: none;
    }
    .custom-button1 {
        display: inline-block;
    }
    .custom-button1:hover {
        background-color: #ffffff;
        color: #550838;
    }
    .product {
        width: calc(100% - 40px); /* Adjust width as needed */
        max-width: 200px; /* Set maximum width for the product */
        height: auto; /* Change height to auto for responsiveness */
        margin-bottom: 20px;
        text-align: center;
        border: solid 1px #c7c7c7;
        border-radius: 10px;
        display: flex; /* Use flexbox for positioning */
        flex-direction: column; /* Stack elements vertically */
        margin-left: 10px;
    }
    .products {
        margin-right: 20px;
        margin-left: 10px;
        justify-content: center ;
    }
    .product img {
        width: 60%;
        max-width: 100%;
        height: auto; /* Set height to auto */
        object-fit: cover;
        border-radius: 8px;
        margin-top: 15px;
    }
    .product + .product {
        margin-left: 10px;
    }
    .product-text {
        padding: 20px; /* Adjust padding as needed */
        flex-grow: 1; /* Allow text to grow to fill available space */
    }
    .product p {
        color: #444444;
        font-size: 13px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px; /* Add margin between text and button */
    }
    .image {
        width: 100%;
        height: auto;
        margin-left: 0px;
    }
    .title {
        display: none;
    }
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 400px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 320px;
        height: 10px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 320px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 10px 45px;
        font-size: 12px;
      }
      .formGroup label {
        font-size: 13px;
      }
      img {
        width: 150px;
        height: 44px;
      }
      footer {
        justify-content: center;
        height: 750px;
        background-color: #550838;
        text-align: center;
        display: block;
    }
    
    .logo1 {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: -60px;
    }
    .logo1 img {
        justify-content: center;
        height: 84px;
        width: 351px;
        margin-right: -900px;
    }
    
    .buttons1 {
        position: relative;
        align-content: center;
        margin-left: 5px;
        margin-top: 40px;
    }
    
    .button1,
    .button2 {
        display: block; /* Change buttons to block-level elements */
        width: 270px; /* Adjust width as needed */
        padding: 20px 45px;
        margin-left: -20px;
        background-color: transparent;
        border: 2px solid #ffffff;
        color: white;
        font-size: 18px;
        border-radius: 5px;
        margin: 0 auto 10px; /* Center buttons horizontally and add margin between them */
        cursor: pointer;
        text-decoration: none; /* Remove default link underline */
    }
    
    .button1:hover,
    .button2:hover {
        background-color: #ffffff; /* Darker green on hover */
        color: #550838;
    }
    
    .footer-links1 {
        list-style-type: none;
        padding: 0;
        margin-left: 100px;
        text-align: left;
        line-height: 2.5;
        font-size: 18px;
        width: 200px;
        max-width: 250px;
        height: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 200px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        top: 300px;
    }
    
    .footer-links1 li {
        display: block;
        position: relative;
    }
    
    .footer-links1 li a {
        color: white;
        text-decoration: none;
    }
    
    .footer-links1 li a:hover {
        color: #ffe16b;
        text-decoration: none;
    }
    
    .footer-links1 li h7 {
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
    
    .footer-links2 {
        list-style-type: none;
        padding: 0;
        margin-left: -210px;
        text-align: left;
        line-height: 2.0;
        max-width: 300px;
        position: absolute; /* Change position to absolute */
        bottom: 20px; /* Adjust bottom spacing as needed */
        left: 50%; /* Place links horizontally centered */
        transform: translateX(10%); /* Center links horizontally */
        top: 600px;
    }
    
    .footer-links2 li {
        display: block;
        position: relative;
    }
    
    .footer-links2 li a {
        font-size: 18px;
        color: white;
        text-decoration: none;
    }
    
    .footer-links2 li h7 {
        font-size: 18px;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1.4px;
    }
}

@media only screen and (max-width: 800px) {
    nav ul li a {
        color: white;
        margin-left: 40px;
        text-decoration: none;
    }
    .content {
        height: 300px;
    }
}

@media only screen and (min-width: 1021px) and  (max-width: 1500px) {
    #flexFormContainer {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-width: 400px;
        width: 100%;
        justify-content: center;
    }  
    .formGroup input {
        width: 320px;
        height: 10px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }
      .formGroup {
        margin-bottom: 0px; /* Increased margin for better separation */
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      #flexForm textarea {
        width: 320px;
        font-family: 'Lexend Deca', sans-serif;
        font-size: 13px;
      }  
      #flexForm button[type="submit"] {
        margin-top: 20px;
        padding: 10px 45px;
        font-size: 12px;
      }
      .formGroup label {
        font-size: 13px;
      }
      img {
        width: 150px;
        height: 44px;
      }
}

@media only screen and (min-width: 1020px) and  (max-width: 5000px) {
    .logo1 img {
        height: 71px;
        width: 300px;
        position: relative;
        top: 50px;
        left: -300px;
        }
    }