  .section{
    width: 90%;
    margin: 0 auto;
  }
  .introText {
    font-size: 1.4rem !important;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 24px;
  }
  
  .formInstructions {
    font-size: 1.4rem !important;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 32px;
  }
  
  .emailLink {
    color: #2c3087;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .emailLink:hover {
    color: #1d4ed8;
    text-decoration: underline;
  }
  
  .required {
    color: #dc2626;
    font-weight: 500;
  }
  
  /* Form Styles */
  .contactForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 85%;
    align-self: flex-start;
  }
 .labelArea{
    display: flex;
    min-width: 200px;
}

  .formGroup {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 8px;
  }
  
  .label {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
  }
  
  .asterisk {
    color: #dc2626;
    margin-left: 2px;
  }
  
  .input,
  .textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #000000;
    box-shadow: inset 0 0px 4px rgba(0, 0, 0, 0.2);
    background-color: #f4f4f4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .input:focus,
  .textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  .textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
  }
  
  .inputError {
    border-color: #dc2626;
  }
  
  .inputError:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  }
  
  .errorText {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
  }
  
  /* Checkbox Group */
  .checkboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 8px 0;
  }
  
  .checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #2563eb;
    cursor: pointer;
  }
  
  .checkboxLabel {
    font-size: 1rem;
    line-height: 1.5;
    color: #4b5563;
    cursor: pointer;
    flex: 1;
  }
  
  .policyLink {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .policyLink:hover {
    color: #1d4ed8;
    text-decoration: underline;
  }
  
  /* Submit Button */
  .submitButton {
    align-self: flex-start;
    padding: 12px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  }
  
  .submitButton:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  }
  
  .submitButton:active {
    transform: translateY(0);
  }
  
  /* Info Section */
  .infoSection {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .infoTitle {
    font-size: 2rem !important;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .infoDescription {
    font-size: 1.4rem !important;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
  }
  
  .officeList {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .officeName{
    font-size: 1.8rem !important
  }
  .officeItem {
    font-size: 1.4rem !important;
    line-height: 1.6;
    color: #7f7f7f;
    padding-left: 20px;
    position: relative;
  }
  
  .officeItem::before {
    
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 16px;
  }
  
  .officeItem strong {
    color: #1f2937;
    font-weight: 600;
  }
  
  /* Map Section */
  .mapSection {
    margin-top: 32px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .map {
    width: 100%;
    height: 300px;
    border: none;
  }
  
  /* Toast Notification */
  .toastContainer {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
  }
  
  .toast {
    background: #2c3087;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: fadeInScale 0.3s ease-out;
  }
  
  .toastIcon {
    background: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .toastContent {
    flex: 1;
  }
  
  .toastTitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 4px 0;
  }
  
  .toastMessage {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    -webkit-text-fill-color: #d1d5db;
  }
  
  /* Animations */
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeInScale {
    from {
      transform: scale(0.9);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .contentGrid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .heroTitle {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .heroTitle {
      font-size: 2.5rem;
    }
    
    .formSection {
      padding: 24px;
    }
    
    .mainContent {
      padding: 40px 0;
    }
    
    .container {
      padding: 0 16px;
    }
    
    .toastContainer {
      top: 16px;
      right: 16px;
      left: 16px;
    }
    
    .toast {
      min-width: auto;
    }
    .labelArea{
        display: flex;
        min-width: 150px;
    }
  }
  
  @media (max-width: 480px) {
    .heroTitle {
      font-size: 2rem;
    }
    
    .heroSection {
      height: 40vh;
    }
    
    .checkboxGroup {
      flex-direction: column;
      gap: 8px;
    }
    
    .checkbox {
      align-self: flex-start;
    }
    .labelArea{
        display: flex;
        min-width: 100px;
    }
    .contactForm {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
      }
  }