body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  .content-wrapper {
    max-width: 1350px; /* Adjust as needed */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Left and right padding */
}
  
  .top-bar {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    background: linear-gradient(to right,#116180,#191749); /* Gradient from purple to orange */
    color: #fff;
    padding: 10px;
    font-size: 14px;
    position: relative;
  }
  
  .top-bar::before,
  .top-bar::after {
    content: '';
    top: 0;
    width: 50px; /* Adjust width as needed */
    height: 100%;
    background-color: #fff; /* White color on the ends */
  }
  
  .top-bar::before {
    left: 0;
  }
  
  .top-bar::after {
    right: 0;
  }
  
  .top-bar p {
    margin: 0 30px 0 0; /* Increased margin-right for spacing */
    font-weight: bold;
    font-style: italic; /* Make the text italic */
  }
  .form-container {
    display: flex;
    flex-grow: 1;
    align-items: center;
    flex-wrap: wrap; /* Allow form elements to wrap on small screens */
  }
  
  .form-container input[type="text"],
  .form-container input[type="email"],
  .form-container input[type="tel"] {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #fff; /* White border */
    background-color: transparent; /* Transparent background */
    color: #fff; /* White text */
    font-style: italic;
    flex: 1 1 150px; /* Allow to grow and shrink, with a minimum width */
  }
  
  .form-container button {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #313757; /* White border */
    background-color: #313757!important; /* Transparent background */
    color: #fff; /* White text */
    font-style: italic;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
  }

  
  .form-container button:hover {
    background-color: #fff; /* White background on hover */
    color: #333; /* Dark text on hover */
  }
  
  .search-bar-container {
    display: flex;
    align-items: center;
    background-color: #f0f0f0; /* Light gray background */
    color: #000; /* Black text */
    padding: 10px 20px; /* Padding around the bar */
    flex-wrap: wrap; /* Allow wrapping */
  }
  
  .logo {
    height: 70px; /* Adjust logo height */
    margin-right: 20px; /* Space between logo and search bar */
  }
  
  .search-container {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Take up remaining space */
    margin-right: 20px; /* Space between search bar and buttons */
  }
  
  .search-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #e4e0df; /* Border */
    border-radius: 20px; /* Rounded corners */
    background-color: #fff; /* White background for the input area */
    overflow: hidden; /* Ensure no overflow from rounded corners */
    flex: 1 1 300px; /* Allow to grow and shrink, with a minimum width */
  }
  
  .dropdown {
    padding: 8px;
    border: none; /* Remove border for dropdown */
    border-radius: 20px 0 0 20px; /* Rounded left corners */
    outline: none; /* Remove outline */
    width: 100px; /* Adjust width as needed */
  }
  
  .search-input {
    padding: 8px;
    border: none; /* Remove border for input */
    flex-grow: 1; /* Take up remaining space */
    outline: none; /* Remove outline */
  }
  
  .search-button {
    padding: 8px 15px;
    border: none;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    cursor: pointer;
    border-radius: 0 20px 20px 0; /* Rounded right corners */
    transition: background-color 0.3s; /* Smooth transition */
  }
  
  .search-button:hover {
    background-color: #444; /* Darker background on hover */
  }
  
  .button-container {
    display: flex;
    gap: 10px; /* Space between buttons */
  }
  
  .icon-button {
    padding: 8px 15px;
    border: 1px solid #000; /* Black border */
    border-radius: 5px; /* Rounded corners */
    background-color: transparent; /* Transparent background */
    color: #000; /* Black text */
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition */
  }
  
  .icon-button:hover {
    background-color: #d9d9d9; /* Light gray background on hover */
  }
  .mobile-replace {
    display: none; /* Hidden by default */
    flex-direction: row; /* Align items in a row */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    padding: 3px; /* Padding around the section */
    text-align: center; /* Center text */
    background-color: #90b728; /* Light gray background */
    color: #000; /* Black text */
  }
  
  .mobile-replace p {
    margin-right: 10px; /* Space between text and button */
  }
  
  /* Button styles remain the same */
  .mobile-button {
    padding: 10px 20px;
    border: 1px solid #000; /* Black border */
    border-radius: 5px; /* Rounded corners */
    background-color: transparent; /* Transparent background */
    color: #000; /* Black text */
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition */
  }
  
  .mobile-button:hover {
    background-color: #d9d9d9; /* Light gray background on hover */
  }

  /* Links Bar */
.links-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d8d9e0; /* Dark grey background */
    color: #333; /* White text */
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .links-bar a {
    color: #333; /* White text color for links */
    text-decoration: none; /* Remove underline */
    padding: 0 10px; /* Space around each link */
  }
  
  .links-bar a:not(:last-child)::after {
    content: "|"; /* Pipe separator */
    color: #aaa; /* Light grey color for separator */
    margin-left: 10px; /* Space after each link */
  }
  
  .left-links, .right-links {
    display: flex;
    align-items: center;
  }
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    .top-bar {
      display: none; /* Hide the top bar on small screens */
    }
  
    .mobile-replace {
      display: flex; /* Show the mobile replace section on small screens */
    }
  
    .links-bar {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .left-links, .right-links {
      flex-direction: row;
    }
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .top-bar {
      display: none; /* Hide the top bar on small screens */
    }
  
    .mobile-replace {
      display: flex; /* Show the mobile replace section on small screens */
    }
  
    .form-container {
      flex-direction: column; /* Stack form elements */
      width: 100%; /* Full width */
    }
    
    .form-container input,
    .form-container button {
      margin-right: 0; /* Remove margin on small screens */
      margin-bottom: 10px; /* Add margin below for spacing */
      width: 100%; /* Full width for inputs and buttons */
    }
    
    .search-bar-container {
      flex-direction: column; /* Stack elements */
    }
    
    .search-input-container {
      width: 100%; /* Full width */
      margin-bottom: 10px; /* Add margin below for spacing */
    }
  }
  
  /* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  background-color: #fff; /* White background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1000;
  padding: 20px;
}

/* Close button */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Modal Content */
.modal-content {
  text-align: center;
}

.modal h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.modal .form-group {
  margin-bottom: 15px;
  text-align: left;
}

/* Input Fields */
.modal .form-group input {
  width: calc(100% - 20px);
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin: 5px 0;
  box-sizing: border-box;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 100px;
}

.radio-group label {
  font-size: 14px;
  color: #555;
}

/* Submit Button */
.modal .submit-button {
  padding: 10px 20px;
  background-color: #f06924;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
}

.modal .submit-button:hover {
  background-color: #d8571e;
}

/* Background Overlay */
.modal::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  display: block;
}

/* Show Modal */
.modal.show {
  display: block;
}
