
  .cta-section {
    width: 100%;
    text-align: center;
    margin: 40px auto;
  }

  .cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #0f76d1 0%, #3ba9ff 100%);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
    transition: all 0.25s ease;
  }

  .cta-button:hover {
    background: linear-gradient(135deg, #3ba9ff 0%, #0f76d1 100%);
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 123, 255, 0.33);
  }

  @media (max-width: 600px) {
    .cta-button {
      width: 90%;
      font-size: 1rem;
      padding: 14px 20px;
    }
  }
