.vvip-hero { background: #0B2447 center/cover no-repeat; height: 50vh; display: flex; align-items: center; justify-content: center; }
.vvip-hero h1 { color: #fff; font-size: 42px; margin: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.vvip-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.vvip-container .ships-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.vvip-container .ship-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.vvip-container .ship-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.vvip-container .ship-card img { width: 100%; height: 180px; object-fit: cover; }
.vvip-container .ship-info { padding: 20px; }
.vvip-container .ship-info h3 { margin: 0 0 5px; font-size: 20px; color: #0B2447; }
.vvip-container .ship-price { color: #c9a227; font-weight: 600; margin: 0 0 15px; font-size: 16px; }
.vvip-container .ship-specs { list-style: none; padding: 0; margin: 0; }
.vvip-container .ship-specs li { padding: 5px 0; color: #555; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.vvip-container .ship-specs li i { color: #c9a227; width: 16px; }

.vvip-intro { max-width: 900px; margin: 0 auto; padding: 50px 20px; text-align: center; }
.vvip-intro p { color: #333; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.vvip-intro p:last-child { margin-bottom: 0; }
