﻿    html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      overflow-x: hidden;
    }

    .business-highlight {
      background: rgba(221, 159, 89, 0.1);
      border-left: 4px solid #dd9f59;
      padding: 20px 25px;
      margin: 25px 0;
      border-radius: 0 8px 8px 0;
      font-style: normal;
    }

    .business-highlight p {
      margin: 0;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .business-highlight strong {
      color: #dd9f59;
    }

    .double-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 40px 0 20px;
    }

    .cta-primary {
      background: #dd9f59;
      color: #1b1411;
      border: none;
      padding: 15px 35px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 40px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta-primary:hover {
      background: #f0b87b;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(221, 159, 89, 0.3);
    }

    .cta-secondary {
      background: transparent;
      color: #dd9f59;
      border: 2px solid #dd9f59;
      padding: 15px 35px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 40px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta-secondary:hover {
      background: rgba(221, 159, 89, 0.1);
      transform: translateY(-2px);
    }

    .badge {
      display: inline-block;
      background: #dd9f59;
      color: #1b1411;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-left: 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .process-block.text-block h3 {
      text-align: center;
    }

    @media (max-width: 768px) {
      .buttons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0;
        width: 80%;
      }

      .action-block {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        box-sizing: border-box;
      }
    }

    @media (max-width: 768px) {
      .buttons-container:last-of-type {
        margin-top: 60px;
        margin-bottom: 40px;
      }

      .buttons-container:first-of-type {
        margin-bottom: 30px;
      }
    }
    
    @media screen and (max-width: 768px) {
    .process-grid .process-block.text-block:nth-of-type(5) h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
    }
}
  

