        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, #1a6da1 0%, #0c4a6e 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 28px;
            font-weight: 700;
        }
        
        .logo p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .stars {
            margin-top: 5px;
            color: #FFD700;
            font-size: 20px;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px;
        }
        
        .hero-title {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .hero-description {
            font-size: 18px;
            max-width: 800px;
        }
        
        /* Sections */
        section {
            padding: 50px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #0c4a6e;
            font-size: 32px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #0c4a6e;
            margin: 15px auto;
            border-radius: 2px;
        }
        
        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        
        .about-text {
            font-size: 16px;
            line-height: 1.8;
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .spec-item {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .spec-value {
            font-size: 24px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 5px;
        }
        
        .spec-label {
            font-size: 14px;
            color: #666;
        }
        
        /* Cabins */
        .cabins-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .cabin-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .cabin-card:hover {
            transform: translateY(-5px);
        }
        
        .cabin-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .cabin-info {
            padding: 20px;
        }
        
        .cabin-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #0c4a6e;
        }
        
        .cabin-details {
            margin-bottom: 15px;
            color: #666;
            font-size: 14px;
        }
        
        .cabin-description {
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        
        .team-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 4px solid #f0f0f0;
        }
        
        .team-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .team-position {
            color: #0c4a6e;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        /* Cruises */
        .cruises-container {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        
        .cruises-placeholder {
            text-align: center;
            padding: 40px;
            color: #666;
        }
        
        .cruises-placeholder i {
            font-size: 48px;
            margin-bottom: 15px;
            color: #ccc;
        }
        
        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .service-item {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 36px;
            color: #0c4a6e;
            margin-bottom: 15px;
        }
        
        .service-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background: #0c4a6e;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #4da8da;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .specs-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .hero-description {
                font-size: 16px;
            }
        }

/* 🚢 Улучшенные стили для таблицы круизов — гармоничные, адаптивные, красивые */

.cruises-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(12, 74, 110, 0.12);
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e9ecef;
}

.cruises-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

/* Заголовки таблицы */
.cruises-table thead th {
    background: linear-gradient(135deg, #1a6da1 0%, #0c4a6e 100%);
    color: white;
    font-weight: 600;
    padding: 16px 18px;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 3px solid #0a3d5a;
}

/* Ячейки таблицы */
.cruises-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

/* Стиль строк */
.cruises-table tbody tr {
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.cruises-table tbody tr:hover {
    background-color: #f8fbff;
    border-left: 4px solid #1a6da1;
    transform: translateX(4px);
}

/* Акцент на колонке "Дней" */
.cruises-days {
    text-align: center;
    font-weight: 700;
    color: #1a6da1;
    font-size: 1.2em;
    background: #f0f7ff;
    border-radius: 6px;
    padding: 6px 12px;
    display: inline-block;
    min-width: 45px;
}

/* Акцент на цене */
.cruises-price {
    font-weight: 700;
    color: #28a745;
    font-size: 1.25em;
    white-space: nowrap;
    background: #f0fff4;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #d0f0d8;
    display: inline-block;
}

/* Адаптивность — для планшетов */
@media (max-width: 768px) {
    .cruises-table {
        font-size: 15px;
        min-width: 620px;
    }

    .cruises-table thead th {
        padding: 12px 14px;
        font-size: 12px;
    }

    .cruises-table tbody td {
        padding: 12px 14px;
    }

    .cruises-days {
        font-size: 1.1em;
        padding: 4px 10px;
    }

    .cruises-price {
        font-size: 1.15em;
        padding: 6px 12px;
    }
}

/* Адаптивность — для телефонов */
@media (max-width: 480px) {
    .cruises-table {
        min-width: 550px;
        font-size: 14px;
    }

    .cruises-table thead th {
        padding: 10px 12px;
        font-size: 11px;
    }

    .cruises-table tbody td {
        padding: 10px 12px;
    }

    .cruises-days,
    .cruises-price {
        font-size: 1em;
        padding: 4px 8px;
    }
}

/* Стиль ошибки — в тон дизайну */
.cruises-error {
    color: #d9534f;
    background: #fdf2f2;
    border-left: 4px solid #d9534f;
    padding: 16px 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(217, 83, 79, 0.1);
    border: 1px solid #f5c6cb;
}

/* Ячейка с маршрутом — всегда по левому краю */
.route-cell {
    text-align: left !important;
    vertical-align: top;
}

/* Стиль для подзаголовка (route) */
.route-subtitle {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin-top: 4px;
    line-height: 1.4;
}
/* 🎯 Фиксированная ширина колонок для лучшего отображения */
.cruises-table th:nth-child(1),
.cruises-table td:nth-child(1) { width: 40%; } /* Маршрут круиза */
.cruises-table th:nth-child(2),
.cruises-table td:nth-child(2) { width: 30%; } /* Даты */
.cruises-table th:nth-child(3),
.cruises-table td:nth-child(3) { width: 15%; } /* Дней */
.cruises-table th:nth-child(4),
.cruises-table td:nth-child(4) { width: 15%; } /* Цена от */