main {
    /* Example ultra-clean styles */
    position: relative;
    z-index: 2; /* above background, below nav */
    max-width: 880px;
    margin: 0 auto;
    padding: 4.5rem 2.5rem 2.5rem 2.5rem;
    background: rgba(255,255,255,0.94); /* or #f1e5e6, or glassy if you want */
    border-radius: 28px;
    box-shadow: 0 8px 42px #0001, 0 1.5px 9px #eb262710;
    /* etc */
  }
  .home-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 2rem;
    margin-top: 5.5rem;
  }
  .home-hero .container {
    background: rgba(41,34,43,0.88); /* semi-transparent over animated bg */
    border-radius: 26px;
    padding: 3.2rem 2rem 2.7rem 2rem;
    box-shadow: 0 8px 42px #0002;
    display: inline-block;
    max-width: 520px;
    
  }
  .home-hero h1 {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 2.65rem;
    margin: 0 0 1.2rem 0;
    letter-spacing: 0.01em;
    color: #fff;
  }
  .home-hero .highlight {
    color: #eb2627;
    letter-spacing: 0.06em;
  }
  .home-hero .subtitle {
    color: #f1e5e6;
    font-size: 1.22rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0.88;
  }
  .hero-title {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 2.65rem;
    margin: 0 0 0.1em 0;
    letter-spacing: 0.01em;
    color: #fff;
  }
  
  .hero-title .highlight {
    color: #eb2627;
    letter-spacing: 0.06em;
  }
  
  .hero-lead {
    font-family: 'Space Grotesk';
    font-size: 2.22rem;
    font-weight: 700;       /* Make it bolder */
    color: #fff;            /* Make it pure white */
    opacity: 1;             /* Full opacity */
    margin-bottom: 2.2rem;
    margin-top: 0.5em;
    letter-spacing: 0.02em;
    text-shadow: 0 1.5px 14px #eb262730; /* Optional: subtle glow */
  }
  
  
  .cta-btn {
    display: inline-block;
    padding: 0.96em 2.2em;
    font-size: 1.09rem;
    font-weight: 600;
    border-radius: 18px;
    background: #eb2627;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 18px #eb26270a;
    transition: background 0.14s, box-shadow 0.16s;
  }
  .cta-btn:hover {
    background: #2a232c;
    color: #fff;
    box-shadow: 0 4px 28px #2a232c40;
  }

  .btn-conteiner {
    display: flex;
    justify-content: center;
    --color-text: #ffffff;
    --color-background: #eb2627;
    --color-outline: #eb262780;
    --color-shadow: #00000080;
    margin-top: 2.5rem; /* Adjust as needed */
  }
  
  .btn-content {
    display: flex;
    align-items: center;
    padding: 5px 30px;
    text-decoration: none;
    font-family: 'Poppins', 'Space Grotesk', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 100px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
    letter-spacing: 0.04em;
  }
  
  .btn-content:hover, .btn-content:focus {
    transition: 0.5s;
    -webkit-animation: btn-content 1s;
    animation: btn-content 1s;
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 0.4em 0 var(--color-background);
  }
  
  .btn-content .icon-arrow {
    transition: 0.5s;
    margin-right: 0px;
    transform: scale(0.6);
  }
  
  .btn-content:hover .icon-arrow {
    transition: 0.5s;
    margin-right: 25px;
  }
  
  .icon-arrow {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
  }
    
  /* SVG animation code (as in your sample) */
  #arrow-icon-one {
    transition: 0.4s;
    transform: translateX(-60%);
  }
  #arrow-icon-two {
    transition: 0.5s;
    transform: translateX(-30%);
  }
  .btn-content:hover #arrow-icon-three {
    animation: color_anim 1s infinite 0.2s;
  }
  .btn-content:hover #arrow-icon-one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
  }
  .btn-content:hover #arrow-icon-two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
  }
  @keyframes color_anim {
    0% { fill: white; }
    50% { fill: var(--color-background);}
    100% { fill: white; }
  }
  @-webkit-keyframes btn-content {
    0% {
      outline: 0.2em solid var(--color-background);
      outline-offset: 0;
    }
  }
  @keyframes btn-content {
    0% {
      outline: 0.2em solid var(--color-background);
      outline-offset: 0;
    }
  }
  @media (max-width: 600px) {
  .home-hero {
    
    padding-top: 2.8rem;           /* can increase if you want more spacing inside */
  }
}

  
  