section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  }
/* 
  section h2 {
    font-size: 32px;
    color: #fff;
    background: linear-gradient(135deg, #f47c20, #ff9e3d);
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    box-shadow: 0 6px 14px rgba(244, 124, 32, 0.2);
    margin-bottom: 20px;
  } */

  section h2 {
    font-size: 28px;
    color: black;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  section h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #f47c20;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 4px;
  }
  

  section p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .contact-card {
    flex: 1 1 300px;
    background: #fffdfc;
    border: 1px solid #ffe4d3;
    border-left: 5px solid #f47c20;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  }

  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }

  .contact-card .icon {
    font-size: 24px;
    color: #f47c20;
    margin-bottom: 12px;
    display: flex;
  }

  .contact-card .icon i {
    margin-right: 8px;
  }

  .contact-card strong {
    color: #222;
    font-size: 17px;
    display: block;
    margin-bottom: 8px;
  }

  .contact-card a,
  .contact-card span {
    font-size: 15px;
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 4px;
    transition: 0.2s;
  }

  .contact-card a:hover,
  .contact-card span:hover {
    color: #f47c20;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    section {
      padding: 30px 20px;
    }

    .contact-options {
      flex-direction: column;
    }
  }