.deluxe-hero { background: #0B2447 center/cover no-repeat; height: 50vh; display: flex; align-items: center; justify-content: center; }
.deluxe-hero h1 { color: #fff; font-size: 42px; margin: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.deluxe-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.ships-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.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; }
.ship-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.ship-card img { width: 100%; height: 180px; object-fit: cover; }
.ship-info { padding: 20px; }
.ship-info h3 { margin: 0 0 10px; font-size: 20px; color: #0B2447; }
.ship-price { color: #c9a227; font-weight: 600; font-size: 14px; margin-bottom: 15px; }
.ship-specs { list-style: none; padding: 0; margin: 0; }
.ship-specs li { padding: 5px 0; color: #555; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.ship-specs li i { color: #c9a227; width: 16px; }
.deluxe-intro { max-width: 900px; margin: 0 auto; padding: 50px 20px; text-align: center; }
.deluxe-intro p { color: #333; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.deluxe-intro p:last-child { margin-bottom: 0; }

.include-exclude { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.ie-box { background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.ie-box h3 { font-size: 24px; margin: 0 0 20px; text-transform: uppercase; letter-spacing: 2px; color: #333; }
.ie-box ul { list-style: none; padding: 0; margin: 0; }
.ie-box ul li { padding: 8px 0; padding-left: 28px; position: relative; color: #555; border-bottom: 1px solid #eee; }
.ie-box ul li:last-child { border-bottom: none; }
.ie-box ul li::before { position: absolute; left: 0; font-weight: bold; }
.ie-box.include ul li::before { content: "✓"; color: #c9a227; }
.ie-box.exclude ul li::before { content: "✕"; color: #c9a227; }
