/* 這個是「與我們聯絡的btn」 */

.btn {
    position: relative;
    color: #111111;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 12px 20px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: #ffda69;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
  }
  .btn span {
    position: relative;
    z-index: 1;
  }
  .btn svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #111111;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  .btn:hover:before {
    width: 100%;
    background: #5ad4d2;
  }
  .btn:hover svg {
    transform: translateX(0);
  }
  .btn:hover,
  .btn:focus {
    color: #111111;
  }
  .btn:active {
    color: #111111;
    transform: scale(0.96);
  }
  
  
  .botton{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }


  Section Header
.section-header {
  font-size: 2rem;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  border-bottom: none;
  text-shadow: none;
  padding-bottom: 0.5rem;
}

/* 以下是點我看更多影片的css */
.cta-btn-box {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #f4c951;
  color: #f4c951;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 50px;
  margin-top: 10px;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(244, 201, 81, 0.5);
  box-shadow: 0 0 10px rgba(244, 201, 81, 0.3);
  letter-spacing: 2px;
}

.cta-button:hover {
  background-color: #5ae1d2;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 15px #5ae1d2, 0 0 30px rgba(244, 201, 81, 0.5);
  text-shadow: none;
  border: 2px solid #5ae1d2;
}