/* General layout and spacing */
  .pcheck-homepage-section {
    padding: 60px 20px;
    margin-bottom: 0; /* Remove default margin from content-section */
  }

  .pcheck-homepage-section-invert {
    background-color: var(--color-bg-light);
  }

  .pcheck-homepage-container {
    /*max-width: 1000px;*/
    margin: 0 auto;
    padding: 0 40px;
  }

  /* Hero Section */
  .pcheck-hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-bg-white);
    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;
  }

  /* Feature Sections */
  .pcheck-feature-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 80px 30px;
    text-align: left;
  }

  .pcheck-feature-section-reversed {
    flex-direction: column-reverse; /* For mobile stacking */
  }

  @media (min-width: 768px) {
    .pcheck-feature-section {
      flex-direction: row;
      text-align: left;
      gap: 60px;
    }

    .pcheck-feature-section-reversed {
      flex-direction: row-reverse;
    }
  }

  .pcheck-feature-content,
  .pcheck-feature-image {
    flex: 1;
    min-width: 300px;
  }

  .pcheck-feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    object-fit: cover;
    aspect-ratio: 16 / 9; /* Or adjust as needed */
  }

  .pcheck-feature-content h2.pcheck-feature-heading,
  .pcheck-feature-content h3.pcheck-feature-subheading {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 20px;
  }

  .pcheck-feature-point-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pcheck-feature-point-list li {
    font-size: 1.1em;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: var(--color-text);
  }

  .pcheck-feature-point-list li::before {
    content: '✔'; /* Unicode checkmark */
    color: var(--color-accent);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Testimonials/Trust Section */
  .pcheck-trust-section {
    background-color: var(--color-bg-white);
    padding: 80px 20px;
    text-align: center;
  }

  .pcheck-trust-section h2.pcheck-trust-heading {
    margin-bottom: 50px;
    color: var(--color-primary);
    font-size: 2.2em;
  }

  .pcheck-trust-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .pcheck-trust-card {
    background-color: var(--color-bg-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pcheck-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .pcheck-trust-card-icon {
    font-size: 3em;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
  }

  .pcheck-trust-card h3.pcheck-card-title {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 15px;
  }

  .pcheck-trust-card p.pcheck-card-detail {
    color: var(--color-text-light);
    line-height: 1.7;
  }

  /* Call to Action Bar */
  .pcheck-cta-bar {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 60px 20px;
    text-align: center;
  }

  .pcheck-cta-bar h2.pcheck-cta-bar-heading {
    color: var(--color-bg-white);
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .pcheck-cta-bar p.pcheck-cta-bar-subheading {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .pcheck-cta-bar .pcheck-cta-bar-button {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .pcheck-cta-bar .pcheck-cta-bar-button:hover {
    background-color: var(--color-accent-hover);
    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;
    }

    .pcheck-hero-cta .pcheck-primary-button,
    .pcheck-hero-cta .pcheck-secondary-button {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }

    .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;
    }
  }