/* General layout and spacing */

  /* Hero Section */
  .pcheck-hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-bg-white);
    min-height: 60vh;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .pcheck-hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
  }

  .pcheck-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(-30deg);
  }

  .pcheck-hero-section h1.pcheck-hero-heading {
    color: var(--color-bg-white);
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }

  .pcheck-hero-section p.pcheck-hero-subheading {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .pcheck-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .pcheck-hero-cta .pcheck-primary-button {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .pcheck-hero-cta .pcheck-primary-button:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    text-decoration: none;
  }

  .pcheck-hero-cta .pcheck-secondary-button {
    background-color: transparent;
    color: var(--color-bg-white);
    border: 2px solid var(--color-bg-white);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }

  .pcheck-hero-cta .pcheck-secondary-button:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    transform: translateY(-2px);
    text-decoration: none;
  }


  /* Media Queries for responsiveness */
  @media (max-width: 767px) {
    .pcheck-hero-section {
      padding: 80px 20px;
    }

    .pcheck-hero-section h1.pcheck-hero-heading {
      font-size: 2.5em;
    }

    .pcheck-hero-section p.pcheck-hero-subheading {
      font-size: 1.1em;
    }

    .pcheck-hero-cta {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .pcheck-hero-cta .pcheck-primary-button,
    .pcheck-hero-cta .pcheck-secondary-button {
      width: auto;
      min-width: 200px;
      max-width: calc(100vw - 40px);
      padding: 15px 40px;
    }

    .pcheck-feature-section {
      padding: 50px 20px;
    }

    .pcheck-trust-section {
      padding: 50px 20px;
    }

    .pcheck-trust-cards {
      flex-direction: column;
      align-items: center;
    }

    .pcheck-trust-card {
      width: 100%;
    }

    .pcheck-cta-bar {
      padding: 40px 20px;
    }

    .pcheck-cta-bar h2.pcheck-cta-bar-heading {
      font-size: 2em;
    }

    .pcheck-cta-bar p.pcheck-cta-bar-subheading {
      font-size: 1em;
    }
  }
