/* ======= General Styling ======= */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .contact-container {
    max-width: 650px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  
  .contact-container:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  }
  
  h1 {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* ======= Form Styling ======= */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 16px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.15);
    outline: none;
  }
  
  .form-group textarea {
    height: 150px;
    resize: none;
  }
  
  /* ======= Submit Button Styling ======= */
  .submit-btn {
    background-color: #007bff;
    color: #fff;
    padding: 14px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #0056b3;
  }
  
  /* ======= Success Message ======= */
  .success-message {
    color: #2d9c2d;
    background: #eaf7ea;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* ======= CTA Section ======= */
  .cta-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f0f0f0;
    border-radius: 12px;
    margin-top: 30px;
  }
  
  .cta-section h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
  }
  
  .cta-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    background-color: #007bff;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #0056b3;
  }
  
  /* ======= Contact Info Section ======= */
  .contact-info {
    margin-top: 40px;
  }
  
  .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .contact-info-item i {
    font-size: 22px;
    color: #007bff;
  }
  
  .contact-info-item span {
    font-size: 18px;
    color: #333;
  }
  