 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .amenities-section {
     position: relative;
     min-height: 100vh;
     padding: 60px 20px;
     /* Replace 'YOUR_IMAGE_URL_HERE' with your actual image URL */
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
         url('/images/amenities.png');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     margin-top: 30px;
 }

 .container {
     max-width: 1400px;
     margin: 0 auto;
 }

 .header {
     text-align: center;
     margin-bottom: 60px;
     color: white;
 }

 .header h1 {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 15px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 .header p {
     font-size: 1.3rem;
     color: #f0f0f0;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
 }

 .amenities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 30px;
     padding: 20px;
 }

 .amenity-card {
     background: rgba(255, 255, 255, 0.95);
     border-radius: 15px;
     padding: 30px 20px;
     text-align: center;
     transition: all 0.3s ease;
     cursor: pointer;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     opacity: 0;
     transform: translateX(100px);
 }

 .amenity-card.animate {
     animation: slideInBounce 0.8s ease-out forwards;
 }

 @keyframes slideInBounce {
     0% {
         transform: translateX(100px);
         opacity: 0;
     }

     60% {
         transform: translateX(-10px);
         opacity: 1;
     }

     80% {
         transform: translateX(5px);
     }

     100% {
         transform: translateX(0);
         opacity: 1;
     }
 }

 .amenity-card:nth-child(1).animate {
     animation-delay: 0.1s;
 }

 .amenity-card:nth-child(2).animate {
     animation-delay: 0.2s;
 }

 .amenity-card:nth-child(3).animate {
     animation-delay: 0.3s;
 }

 .amenity-card:nth-child(4).animate {
     animation-delay: 0.4s;
 }

 .amenity-card:nth-child(5).animate {
     animation-delay: 0.5s;
 }

 .amenity-card:nth-child(6).animate {
     animation-delay: 0.6s;
 }

 .amenity-card:nth-child(7).animate {
     animation-delay: 0.7s;
 }

 .amenity-card:nth-child(8).animate {
     animation-delay: 0.8s;
 }

 .amenity-card:nth-child(9).animate {
     animation-delay: 0.9s;
 }

 .amenity-card:nth-child(10).animate {
     animation-delay: 1s;
 }

 .amenity-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
     background: rgba(255, 255, 255, 1);
 }

 .icon-wrapper {
     width: 100px;
     height: 100px;
     margin: 0 auto 20px;
     background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3rem;
     transition: all 0.3s ease;
 }

 .amenity-card:hover .icon-wrapper {
     transform: scale(1.1);
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 }

 .amenity-card:hover .icon-wrapper {
     color: white;
 }

 .amenity-title {
     font-size: 1.2rem;
     font-weight: 600;
     color: #333;
     margin-top: 15px;
 }

 @media (max-width: 768px) {
     .header h1 {
         font-size: 2.5rem;
     }

     .header p {
         font-size: 1.1rem;
     }

     .amenities-grid {
         grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
         gap: 20px;
     }

     .icon-wrapper {
         width: 80px;
         height: 80px;
         font-size: 2.5rem;
     }

     .amenity-title {
         font-size: 1rem;
     }
 }