/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  header {
    background: white;
    color: #e18927;
    padding: 10px 20px;
  }


  .inquiry{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .site-header {
    padding: 10px;
    background-color: #e18927;
    border-bottom: 1px solid #ddd;
  }
  
  .header-content {
    display: flex;
    align-items: center; /* Vertically align logo and name */
    gap: 15px; /* Add spacing between the logo and name */
  }
  
  .logo {
    max-height: 60px; /* Adjust the logo size */
    width: auto; /* Maintain aspect ratio */
  }
  
  .text-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .text-nav h1 {
    margin: 0;
    font-size: 1.8rem;
  }
  
  .main-nav {
    background-color: #333; /* Dark background for the nav */
    padding: 10px 20px; /* Add spacing inside the nav */
    text-align: center; /* Center the nav links */
    border-radius: 5px; /* Optional: rounded corners */
  } 

  .main-nav a {
      color: #fff; /* White text for contrast */
      text-decoration: none; /* Remove underline */
      margin: 0 15px; /* Add spacing between links */
      font-weight: bold; /* Make the text bold */
      transition: color 0.3s ease; /* Smooth hover effect */
  }

.main-nav a:hover {
    color: #ffcc00; /* Highlight color on hover */
}
  
  main {
    padding: 50px;
  }
  .inquiry form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .inquiry input,
  .inquiry textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .inquiry button {
    width: auto;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: center; 
  }
  
  .inquiry-form button:hover {
    background-color: #555;
  }
  
  footer {
    background: #e18927;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  .slideshow-container {
    position: relative;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
  }
  
  .slide {
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: auto;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }