.contact-header {
    background: url('../image/joel-muniz-qvzjG2pF4bE-unsplash.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .contact-header-text {
    position: absolute;
  }
  
  .contact-header-text h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  
  .contact-header-text p {
    font-size: 1.5rem;
  }
  
  .contact-section {
    padding: 60px 20px;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-form h2, .contact-info h2 {
    margin-bottom: 20px;
  }
  .map-section {
    margin-top: 50px;
  }
  
  .map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
  }
  
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  .btnn {
    background-color: #dc3545;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btnn:hover {
    background-color: #c82333;
  }
  
  .contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: #dc3545;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-icon {
    font-size: 20px;
    color: #dc3545;
    margin-right: 15px;
  }
  
  .social-icon:hover {
    color: #a71d2a;
  }
  