/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: rgb(249, 249, 249);  /* Light gray background */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  h1 {
    text-align: center;
    color: rgb(44, 62, 80);  /* Dark blue-gray color */
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .form-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  .form-box {
    width: 48%;
    background-color: rgb(255, 255, 255);  /* White background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-box h2 {
    text-align: center;
    color: rgb(52, 152, 219);  /* Light blue color */
    margin-bottom: 15px;
  }
  
  .form-box label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
    color: rgb(52, 73, 94);  /* Dark grayish-blue color */
  }
  
  .form-box input,
  .form-box textarea,
  .form-box select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid rgb(221, 221, 221);  /* Light gray border */
    border-radius: 5px;
  }
  
  .form-box textarea {
    height: 150px;
  }
  
  .form-box .submit-btn {
    background-color: rgb(46, 204, 113);  /* Green color */
    color: rgb(255, 255, 255);  /* White text */
    border: none;
    padding: 10px;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .form-box .submit-btn:hover {
    background-color: rgb(39, 174, 96);  /* Darker green color on hover */
  }
  
  /* Directives Text */
  .directives {
    background-color: rgb(236, 240, 241);  /* Light grayish background */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    color: rgb(127, 140, 141);  /* Medium gray color */
    margin-top: 30px;
  }
  
  .directives strong {
    color: rgb(44, 62, 80);  /* Dark blue-gray color for strong text */
  }
  
  /* Container for the image */
  .image-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 400px;
  }

  /* The image */
  .zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out; /* Smooth zoom effect */
  }

  /* Zoom In effect on hover */
  .image-container:hover .zoom-image {
    transform: scale(1.1); /* Slight zoom-in effect */
  }