 .join-banner {
     background: linear-gradient(135deg, #0eb951 0%, #042801 100%);
     padding: 40px 60px;
     position: relative;
     overflow: hidden;
     min-height: 200px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     overflow: hidden;
     /* Important for masking */
 }

 .ribbon-shine {
     position: absolute;
     top: 0;
     left: -60%;
     width: 50%;
     height: 100%;
     background: linear-gradient(120deg,
             transparent,
             rgba(255, 255, 255, 0.4),
             transparent);
     transform: skewX(-25deg);
     pointer-events: none;
     z-index: 2;
 }

 .join-content {
     z-index: 10;
     position: relative;
 }

 .join-subtitle {
     color: white;
     font-size: 16px;
     font-weight: 400;
     margin-bottom: 8px;
     letter-spacing: 0.5px;
     opacity: 0.95;
 }

 .join-title {
     color: white;
     font-size: 25px;
     font-weight: 700;
     line-height: 1.1;
     margin: 0;
 }

 .join-title-subtitle {
     font-family: 'Pacifico', cursive;
     color: #e6d954;
     font-size: 20px;
     font-weight: 700;
     line-height: 1.1;
     margin: 12px 0px 0px 0px;
     width: 45%;
 }

 .join-button-container {
     z-index: 10;
     position: relative;
 }

 .join-button {
     background: #e6d954;
     color: #333;
     padding: 16px 32px;
     border: none;
     border-radius: 50px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .join-button:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .join-arrow {
     position: absolute;
     right: 180px;
     top: 50%;
     transform: translateY(-50%) rotate(-15deg);
     z-index: 5;
 }

 .join-arrow svg {
     width: 60px;
     height: 40px;
     stroke: rgba(139, 69, 19, 0.6);
     stroke-width: 3;
     fill: none;
 }

 .join-hearts-container {
     position: absolute;
     right: 0;
     top: 0;
     bottom: 0;
     width: 400px;
     overflow: hidden;
     z-index: 1;
 }

 .join-heart {
     position: absolute;
     opacity: 0.3;
 }

 .join-heart-1 {
     top: 20px;
     right: 320px;
     width: 25px;
     height: 22px;
     transform: rotate(-10deg);
 }

 .join-heart-2 {
     top: 60px;
     right: 280px;
     width: 30px;
     height: 27px;
     transform: rotate(15deg);
 }

 .join-heart-3 {
     top: 45px;
     right: 240px;
     width: 20px;
     height: 18px;
     transform: rotate(-5deg);
 }

 .join-heart-4 {
     top: 100px;
     right: 200px;
     width: 35px;
     height: 32px;
     transform: rotate(20deg);
 }

 .join-heart-5 {
     top: 30px;
     right: 160px;
     width: 22px;
     height: 20px;
     transform: rotate(-15deg);
 }

 .join-heart-6 {
     top: 85px;
     right: 120px;
     width: 28px;
     height: 25px;
     transform: rotate(10deg);
 }

 .join-hands-container {
     position: absolute;
     right: 50px;
     bottom: 0;
     z-index: 2;
 }

 .join-hands {
     display: flex;
     gap: 10px;
     opacity: 0.4;
 }

 .join-hand {
     width: 40px;
     height: 50px;
     transform-origin: bottom center;
 }

 .join-hand-1 {
     transform: rotate(-10deg);
 }

 .join-hand-2 {
     transform: rotate(5deg);
 }

 .join-hand-3 {
     transform: rotate(-5deg);
 }

 .join-hand-4 {
     transform: rotate(10deg);
 }

 @media (max-width: 768px) {
     .join-banner {
         padding: 30px 20px;
         flex-direction: column;
         text-align: center;
         gap: 30px;
     }

     .join-title {
         font-size: 36px;
     }

     .join-arrow {
         display: none;
     }

     .join-hearts-container {
         width: 200px;
     }
 }