.contact {
    padding: 60px 10%;
    background-color: #f8faff;
  }
  
  .contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info {
    max-width: 500px;
  }
  
  .contact-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: #03339b;
  }
  
  .contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }
  
  .location-box {
    background: #e7efff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
  }
  
  .location-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #03339b;
    margin-bottom: 5px;
  }
  
  .contact-footer {
    text-align: center;
    background: #03339b;
    color: white;
    padding: 40px 10%;
    margin-top: 50px;
  }
  
  .contact-footer p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .whatsapp-btn {
    display: inline-block;
    padding: 12px 20px;
    background: white;
    color: #03339b;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .whatsapp-btn:hover {
    background: #e7efff;
  }
  
  /* Responsif */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-image img {
      max-width: 100%;
    }
  }
  