.icon-box {
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
  }
  .icon-box:hover {
    transform: translateY(-10px);
  }
  .icon-box img {
    border-radius: 8px;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
    flex-grow: 1;
  }
  .icon-box small {
    display: block;
    margin-bottom: 10px;
    color: #999;
  }

  .headline-section {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
  }
  .headline-section:hover {
    transform: translateY(-10px);
  }
  .headline-section img {
    border-radius: 10px 0 0 10px;
    object-fit: cover;
  }
  .headline-section small {
    color: #999;
  }
  .headline-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
  }
  .headline-section p {
    font-size: 16px;
    color: #555;
  }