body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f2ea;
  display: flex;
  justify-content: center;
  align-items: center;
}
#message{
  font-family: Arial;
}
/* Main Container */
.container {
  display: flex;
  max-width: 1200px;
  margin: 50px auto;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left Section (Image) */
.left-section {
  flex: 1;
  background: #ddd;
}

.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Section (Content) */
.right-section {
  flex: 1;
  padding: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: black;
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.intro-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Contact Container (Tourist Visits & Form) */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
 

}

/* Left Contact Details */
.tourist-visits {
  width: 45%;
}

.tourist-visits h2, .commercial-requests h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tourist-visits p {
  font-size: 14px;
  color: #444;
}

/* Social Icons */
.social-icons a img {
  width: 20px;
  margin-right: 10px;
}

/* Form Section */
.commercial-requests {
  width: 45%;
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  font-size: 14px;
  padding: 8px;
  margin-bottom: 10px;
}
button {
  font-size: 14px;
  padding: 10px;
  background-color: #8e7a64;
    border: none;
    color: white;
}
form textarea {
  height: 100px;
  resize: none;
}


button:hover {
  background-color: #b99830;
}

/* ===================== RESPONSIVE DESIGN ===================== */

/* Max-width: 510px (Small Mobile) */
@media screen and (max-width: 510px) {
  .container {
      flex-direction: column;
      margin: 20px;
  }

  .right-section {
      padding: 20px;
  }

  .contact-container {
      flex-direction: column;
      gap: 20px;
 
  
  }

  .tourist-visits, .commercial-requests {
      width: 100%;
  }

  h1 {
      font-size: 28px;
  }

  form {
      width: 90%; /* Make the form narrower */
      margin: 0 auto; /* Center the form */
  }

  form input, form textarea {
    font-size: 15px;
    padding: 9px;
    margin-bottom: 10px;
}
button {
    font-size: 15px;
    padding: 11px;
    background-color: #8e7a64;
}
}


/* Min-width: 701px - Max-width: 800px (Tablet Small) */
@media screen and (min-width: 701px) and (max-width: 800px) {
  .container {
      flex-direction: column;
      margin: 40px;
  }

  .right-section {
      padding: 40px;
  }

  .contact-container {
      flex-direction: column;
      gap: 30px;
     

  }

  .tourist-visits, .commercial-requests {
      width: 100%;
  }

  h1 {
      font-size: 32px;
  }
  form input, form textarea {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 10px;
}
button {
    font-size: 16px;
    padding: 12px;
    background-color: #8e7a64;
    border: none;
    color: white;
}
  
}

/* Min-width: 801px - Max-width: 1024px (Tablet Large) */
@media screen and (min-width: 801px) and (max-width: 1024px) {
  
  #message{
    font-family: Arial;
  }
  
  .container {
      flex-direction: column;
      margin: 200px;
    
  }

  .right-section {
      padding: 50px;
  }

  .contact-container {
      flex-direction: row;
      gap: 35px;
     
  
  }

  .tourist-visits, .commercial-requests {
      width: 48%;
  }

  h1 {
      font-size: 34px;
  }

  form input, form textarea {
    font-size: 17px;
    padding: 11px;
    margin-bottom: 10px;
}
button {
    font-size: 17px;
    padding: 13px;
    background-color: #8e7a64;
    border: none;
    color: white;

}
}

/* Min-width: 1025px - Max-width: 1552px (Laptop & Desktop) */
@media screen and (min-width: 1025px) and (max-width: 1552px) {
  .container {
      flex-direction: row;
      margin: 50px auto;
      
     


  }

  .right-section {
      padding: 50px;
  }

  .contact-container {
      flex-direction: row;
      gap: 40px;

  }

  .tourist-visits, .commercial-requests {
      width: 48%;
  }

  h1 {
      font-size: 36px;
  }

  form input, form textarea {
    font-size: 18px;
    padding: 12px;
}
button {
    font-size: 18px;
    padding: 14px;
    background-color: #8e7a64;
    border: none;
    color: white;
}
}

/* Min-width: 1920px - Max-width: 2084px (Large Screens) */
@media screen and (min-width: 1920px) and (max-width: 2084px) {
  
  #message{
    font-family: Arial;
  }
  
 
  .container {
    display: flex;
      max-width: 1500px;
      margin: 150px;
     
      
  }

  .right-section {
      padding: 60px;
  }

  .contact-container {
      flex-direction: row;
      gap: 50px;
  }

  .tourist-visits, .commercial-requests {
      width: 50%;
  }

  h1 {
      font-size: 38px;
  }
  form input, form textarea {
    font-size: 19px;
    padding: 13px;
    margin-bottom: 10px;
}
button {
    font-size: 19px;
    padding: 15px;
    background-color: #8e7a64;
    border: none;
    color: white;
}
}
