.container1 {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    gap: 30px;
  }
  
  .contact-info, .contact-form {
    flex: 1;
  }


.logo img {
    width: 280px; /* Default size */
}

@media (max-width: 1200px) {
    .logo img {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 120px;
    }
}
  
  .contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .contact-info ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-info ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .contact-info .icon {
    font-size: 20px;
    margin-right: 10px;
  }
  
  .contact-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
  }
  
  .contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .contact-form .form-group {
    flex: 1 1 100%;
  }
  
  .contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .contact-form .form-group input,
  .contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .contact-form .form-group textarea {
    resize: none;
    height: 100px;
  }
  
  .contact-form .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .contact-form .btn:hover {
    background-color: #0056b3;
  }
  
  .prohibited-items-container {
    max-width: auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Center align text */
  }
  
  .prohibited-items-container h2 {
    font-size: 24px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6f61;
  }
  
  .prohibited-items-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Make sure it spans the container width */
  }
  
  .prohibited-items-list li {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s, box-shadow 0.3s;
  }
  
  .prohibited-items-list li:hover {
    background-color: #ffe6e6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .prohibited-icon {
    width: 24px;
    height: 24px;
    background-color: #ff6f61;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .prohibited-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    text-align: left;
  }
  .table-container {
    margin: 120px;
    max-width: 90%;
    overflow-x: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  /* Table Styling */
  table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
  }

  thead {
    background-color: #4CAF50;
    color: white;
  }
  #my-slider {
    width: 100%;
    max-width: 100%; /* Ensure the slider doesn't exceed the screen width */
    overflow: hidden; /* Prevent content overflow */
    margin: 0 auto; /* Center the slider horizontally */
  }
  
  #my-slider img {
    width: 100%; /* Make images take up 100% of the slider width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline gaps below images */
  }
  
  .ism-slider ol {
    padding: 0;
    margin: 0;
    list-style: none; /* Remove list styling */
  }
  
  .ism-slider ol li {
    display: block;
    width: 100%;
  }
  
  th, td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ddd;
  }

  th {
    font-size: 16px;
    text-transform: uppercase;
  }

  tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
  }

  tbody tr:hover {
    background-color: #eaf6ea;
  }

  td {
    font-size: 14px;
    color: #333;
  }

  /* Responsive Styling */
  @media (max-width: 768px) {
    th, td {
      font-size: 12px;
      padding: 8px;
    }
  }
