* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
    margin-right: 20px; /* Move the logo slightly to the left */
    /* or */
    margin-left: 60px;  /* Move the logo slightly to the right */
    
    /* For vertical adjustments */
    margin-top: 10px; /* Move the logo slightly down */
    margin-bottom: 10px; /* Move the logo slightly up */
  }
  

.offer-countdown {
    text-align: right;
}

.countdown {
    font-size: 1.2rem;
    font-weight: bold;
}

.offer-price {
    margin-top: 5px;
    color: red;
    font-size: 1.5rem;
}

.intro {
    text-align: center;
    padding: 40px;
}

.video-container {
    margin: 20px auto;
    width: 80%;
}

.product-list {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.product {
    text-align: center;
}

.pricing {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
}

.order {
    text-align: center;
    padding: 40px;
}

.order form {
    margin: 20px 0;
}

.order-summary {
    margin-top: 20px;
}

.faq {
    background-color: #f1f1f1;
    padding: 40px;
}

.faq-item {
    margin-bottom: 10px;
}

.question {
    font-weight: bold;
    cursor: pointer;
}

.plus-sign {
    float: right;
}

.answer {
    display: none;
    padding: 10px 0;
}

footer {
    background-color: #333;
    padding: 20px;
    text-align: center;
    color: white;
}

.footer-logo {
    width: 100px;
}

/* Style the header container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #a52222; /* Dark blue background */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures the header stays above all other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Ensure that the rest of the page content does not go under the header */
  body {
    padding-top: 80px; /* Adjust this value based on the header height */
  }
  
  /* Style the logo */
  .logo {
    height: 60px;
    max-width: 100%; /* Make sure the logo is responsive */
  }
  
  /* Style the offer countdown section */
  .offer-countdown {
    display: flex;
    align-items: center;
    color: #ffffff;
    flex-wrap: wrap; /* Allows content to wrap on small screens */
  }
  
  /* Style the offer text */
  .offer-text {
    background-color: #F7941D; /* Orange background for the offer text */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 20px;
    white-space: nowrap; /* Prevents the text from wrapping */
  }
  
  /* Style the countdown boxes */
  .countdown {
    display: flex;
    flex-wrap: wrap; /* Makes the countdown boxes wrap on smaller screens */
  }
  
  .countdown-box {
    background-color: #0C3C70; /* Same background as the header */
    padding: 10px;
    border: 2px solid #F7941D; /* Yellow border */
    border-radius: 5px;
    margin-left: 10px;
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    min-width: 70px;
  }
  
  /* Adjust font size for the countdown numbers */
  .countdown-box span {
    display: block;
    font-size: 24px;
  }
  
  /* Make the header responsive */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      padding: 10px;
    }
  
    .offer-countdown {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .offer-text {
      margin-bottom: 10px;
      margin-right: 0;
      white-space: normal; /* Allow text to wrap on smaller screens */
    }
  
    .countdown-box {
      margin-left: 0;
      margin-bottom: 10px;
    }
  }
  

  .intro {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #662020, #a52222, #ff9999); /* Three maroon shades */
    color: #333;
    font-family: 'Arial', sans-serif;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .intro h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #2C3E50;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .intro p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 35%; /* Smaller height with adjusted aspect ratio */
    height: 0;
    overflow: hidden;
    width: 60%; /* Smaller width */
    margin: 0 auto 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
  }
  
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 600px) {
    .video-container {
      padding-bottom: 60%; /* Further adjustment for smaller mobile screens */
      width: 90%;
    }
  
    .intro h1 {
      font-size: 22px;
    }
  
    .intro p {
      font-size: 14px;
    }
  }
  
  /* Mobile responsiveness */
  @media (max-width: 600px) {
    .video-container {
      padding-bottom: 75%; /* Adjust to shorter height for mobile */
    }
  
    .intro h1 {
      font-size: 24px;
    }
  
    .intro p {
      font-size: 14px;
    }
  }


  .order {
    padding: 20px;
    margin: 0 auto;
    max-width: calc(100% - 3in); /* 1.5 inch margin on both sides for larger screens */
}

.order-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.order-form,
.order-summary {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-form h2,
.order-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.order-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.order-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.order-form button:hover {
    background-color: #45a049;
}

.order-summary h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.order-summary table {
    width: 100%;
    border-collapse: collapse;
}

.order-summary td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.order-summary td:last-child {
    text-align: right;
}

.order-summary td strong {
    color: #333;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .order {
        max-width: calc(100% - .5in); /* 1 inch margin on both sides for mobile */
    }

    .order-container {
        flex-direction: column;
    }

    .order-form,
    .order-summary {
        width: 100%;
        margin-bottom: 20px;
    }

    .order-form button {
        width: 100%;
    }
}

  
/* ====   FAQ Section   ------- /*

  /* Multi-color Background for the Entire Page */
body {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fcbf49);
    background-size: 300% 300%;
    animation: gradient 15s ease infinite;
  }
  
  /* Animation for Multi-color Background */
  @keyframes gradient {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
  }
  
  /* FAQ Section Styling */
  .faq {
    margin: 0 auto;
    padding: 40px;
    max-width: calc(100% - 3in); /* 2 inches margin on both sides */
    background-color: #fff; /* White background for FAQ section */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .faq h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-item .question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding: 10px 0;
  }
  
  .faq-item .plus-sign {
    font-size: 20px;
    color: #4CAF50; /* Green color for the plus sign */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .faq-item .answer {
    display: none;
    padding: 10px 0;
    font-size: 16px;
    color: #666;
  }
  
  /* Expand and Collapse FAQ Items */
  .faq-item.active .answer {
    display: block;
  }
  
  .faq-item.active .plus-sign {
    transform: rotate(45deg) translateY(-50%);
  }
  
  /* Mobile responsiveness */
  @media (max-width: 600px) {
    .faq {
      padding: 20px;
      max-width: calc(100% - 1in); /* Adjust margin for smaller screens */
    }
  
    .faq h2 {
      font-size: 24px;
    }
  
    .faq-item .question {
      font-size: 16px;
    }
  
    .faq-item .answer {
      font-size: 14px;
    }
  }

 /* Product Section Styling */
.products {
  padding: 40px 20px; /* Corrected padding */
  background-color: #f9f9f9; /* Light background for the section */
  text-align: center;
}

.text-center {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.product-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.product {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: calc(33.333% - 20px); /* Adjust width to fit 3 items per row */
  text-align: center;
}

.product-price {
  font-size: 24px; /* Larger font size for price */
  font-weight: bold;
  color: #4CAF50; /* Green color for price */
  margin-bottom: 10px;
}

.product img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

.product button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.product button:hover {
  background-color: #45a049;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .product {
      width: calc(50% - 20px); /* Two items per row on smaller screens */
  }
}

@media (max-width: 480px) {
  .product {
      width: 100%; /* One item per row on very small screens */
  }
}


/* General Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #00a400; /* Green background */
  color: rgb(133, 2, 100);
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Section Styling */
.price-section {
  padding: 40px 20px;
  background-color: #00a400; /* Green background */
}

/* Heading Styling */
.price-section h1 {
  font-size: 36px;
  color: #ffbf00; /* Yellow color for heading */
  margin-bottom: 20px;
}

/* Paragraph and Price Styling */
.price-section p {
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlighted-price {
  font-size: 28px;
  color: yellow;
  background-color: rgb(11, 54, 0);
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold;
}

/* Button Styling */
.buy-now-btn {
  background-color: #ffffff;
  color: #00a400;
  border: none;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
  display: inline-block;
}

.buy-now-btn:hover {
  background-color: #ffbf00;
  color: #ffffff;
}





.pricing {
  text-align: center;
  padding: 20px;
}

.video-row {
  display: flex;
  justify-content: space-between; /* Adjust spacing between videos */
  flex-wrap: wrap; /* Allows wrapping to new lines on small screens */
  gap: 10px; /* Optional: space between videos */
}

.video-container1 {
  flex: 1;
  min-width: 300px; /* Minimum width of each video container */
  max-width: 30%; /* Adjust to fit the size of each video container */
  box-sizing: border-box;
  height: 400px;
}

.video-container1 iframe {
  width: 100%;
  height: 400px;
}

@media (max-width: 768px) {
  .video-container1 {
    max-width: 90%; /* On smaller screens, make each video full-width */
    margin-bottom: 15px;
  }
}


.product-main {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.product-main img.main-product-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.view-button {
  background-color: green;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.product-gallery {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.thumbnail-item img {
  width: 60%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.thumbnail-item img:hover {
  transform: scale(2.05);
}

@media (max-width: 768px) {
  .product-list {
    flex-direction: column;
    align-items: center;
  }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
