 .home-cards-section {
     position: relative;
     z-index: 10;
     margin-top: -60px;
 }

 .premium-card {
     background: #fff;
     padding: 40px 30px;
     border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     display: block;
     text-align: center;
     transition: all 0.3s ease;
     margin-bottom: 30px;
     border: 1px solid #f0f0f0;

 }

 .premium-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
     border-color: #c8a876;
 }

 .premium-card i {
     font-size: 3rem;
     color: #c8a876;
     margin-bottom: 20px;
     display: block;
 }

 .premium-card h4 {
     font-family: 'Merienda', cursive;
     color: #333;
     margin-bottom: 15px;
     font-size: 2rem;
     font-weight: 700;
 }

 .premium-card p {
     color: #666;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 0;
 }

 @media (max-width: 768px) {
     .home-cards-section {
         margin-top: 0;
         padding-top: 40px;
     }
 }