.contact-banner {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
}

.contact-banner .banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-banner p {
  font-size: 18px;
  color: #e0e0e0;
}

.contact-section {
    padding: 60px 20px;
    background: #f3f7ff;
    text-align: center;
  }
  
  .contact-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .contact-form {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .contact-form button.cta {
    background-color: #667eea;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button.cta:hover {
    background-color: #5a67d8;
  }
  
  .contact-info {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: left;
  }
  
  .contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2d3748;
  }
  
  .contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
  }
  
  .contact-info a {
    color: #667eea;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-info {
      text-align: center;
    }
  }
  