/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  
  /* Header Section */
  .header-section {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-in-out;
  }
  
  .header-section h1 {
    font-size: 3rem;
    margin: 0;
    animation: popIn 1s ease-in-out;
  }
  
  .header-section p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  /* Contact Form */
  .contact-form {
    background: #fff;
    padding: 30px;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #333;
    animation: slideUp 1.2s ease-in-out;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border 0.3s ease;
  }
  
  .contact-form input:focus, .contact-form textarea:focus {
    border-color: #6e8efb;
    outline: none;
  }
  
  .contact-form button {
    padding: 10px 20px;
    background: #6e8efb;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #a777e3;
  }
  
  /* Contact Info */
  .contact-info {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.2s ease-in-out;
  }
  
  .contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .contact-info .info-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  