* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Open Sans',sans-serif;
  }
  
  .contact-container {
    width: 100%;
    background: #fff;
  }
  
  /* Banner Section */
  .contact-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f4f7ff;
    padding: 2rem;
    flex-wrap: wrap;
  }
  
  .banner-left h1 {
    font-size: 2.5rem;
    color: #1e266d;
  }
  
  .breadcrumb {
    color: #555;
    margin-top: 0.5rem;
  }
  
  .banner-image-placeholder {
    width: 300px;
    height: 150px;
    background-color: #d3d3d3;
    margin-top: 1rem;
  }
  
  /* Contact Info Section */
  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
  }
  
  .info-box {
    border: 1px solid #eee;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
  }

  .info-box a {
    color : black;
    text-decoration: none;
  }
  
  .info-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .icon {
    font-size: 2.5rem;
    color: #1e266d;
    margin-bottom: 1rem;
  }
  
  .info-box h3 {
    margin: 0.5rem 0;
    color: #1e266d;
  }
  
  .info-box p {
    color: #555;
  }
  
  /* Form Section */
  .contact-form-section {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .contact-form-section h2 {
    font-size: 2rem;
    color: #1e266d;
  }
  
  .description {
    color: #555;
    max-width: 700px;
    margin: 1rem auto 2rem;
  }
  
  .contact-form {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .form-row input {
    flex: 1;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
  }
  
  textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    resize: vertical;
  }
  
  .recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .fake-recaptcha {
    width: 300px;
    height: 78px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
  }
  
  button[type="submit"] {
    background: transparent;
    border: 2px solid #1e266d;
    color: #1e266d;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s;
  }
  
  button[type="submit"]:hover {
    background: #1e266d;
    color: white;
  }
  
  /* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 1.8rem;
  color: #1e266d;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ff6600; /* Accent hover color */
  transform: translateY(-3px);
}

  /* Responsive Adjustments */
  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
  
    .banner-left h1 {
      font-size: 1.8rem;
    }
  }
  