/* General Classes */
.containerss {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
    background-color: #f9fafb;
    
  }
  
  .flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-box {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    box-shadow: 0 .5rem .5rem #38393a;
  }
  
  /* Header Section */
  .header-section {
    text-align: center;
  }
  
  .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
    color: #6b7280;
  }
  
  /* Content Sections */
  .content-sections {
    display: grid;
    gap: 2rem;
  }
  .banner{
    width: 100%;
}
  
  @media (min-width: 768px) {
    .content-sections {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
  }
  
  /* Form Section */
  .form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-label {
    font-size: 0.875rem;
    color: #4b5563;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
  }
  
  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5);
  }
  
  .form-submit {
    padding: 0.75rem;
    background-color: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .form-submit:hover {
    background-color: #059669;
  }
  
  /* Details Section */
  .details-section {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-left: 2rem;
  }
  
  .details-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
  }
  
  .details-item {
    font-size: 0.875rem;
    color: #4b5563;
  }
  
  .details-map {
    margin-top: 1rem;
  }
  
  .map {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: none;
  }
  
  /* Responsive Breakpoints */
  @media (max-width: 768px) {
    .contact-box {
      padding: 1rem;
    }
  
    .page-title {
      font-size: 1.5rem;
    }
  
    .form-title,
    .details-title {
      font-size: 1.25rem;
    }
  }
  