        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0066CC;
            --secondary: #00A8E8;
            --accent: #FFB81C;
            --dark: #0B1929;
            --light: #F5F7FA;
            --text: #1A3A52;
            --border: #E0E8F0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(11, 25, 41, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
            font-weight: 500;
        }

        nav a:hover {
            color: var(--accent);
        }

        .nav-cta {
            background: var(--accent);
            color: var(--dark);
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 184, 28, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            position: relative;
            height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0B1929 0%, #0066CC 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('cruise-hero.png?prompt=luxury%20cruise%20ship%20sailing%20ocean%20sunset%20premium%20maritime%20travel&model=gemini-flash-2.5-image');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--dark);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 184, 28, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid var(--accent);
        }

        .btn-secondary:hover {
            background: var(--accent);
            color: var(--dark);
        }

        /* Featured Products Section */
        .featured {
            padding: 6rem 2rem;
            background: var(--light);
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, #00A8E8 0%, #0066CC 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 3rem;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .product-info {
            padding: 2rem;
        }

        .product-category {
            color: var(--secondary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .product-title {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-weight: 600;
        }

        .product-description {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .btn-small {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .btn-small:hover {
            background: var(--secondary);
            transform: translateX(3px);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: #fff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature {
            text-align: center;
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            width: 48px;
            height: 48px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon svg {
            width: 40px;
            height: 40px;
        }

        .feature h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature p {
            color: #666;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #0B1929 0%, #0066CC 100%);
            color: #fff;
        }

        .contact-content {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            margin-bottom: 2rem;
        }

        .contact-item label {
            display: block;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .contact-item p {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            border: none;
			color: var(--dark);
            border-radius: 6px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form .btn {
            margin-top: 1rem;
        }

        /* Footer */
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: #fff;
            border-radius: 12px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
            color: var(--dark);
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .modal-close:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(255, 184, 28, 0.4);
        }

        .modal-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px 12px 0 0;
        }

        .modal-body {
            padding: 3rem 2rem;
        }

        .modal-category {
            color: var(--secondary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .modal-title {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            color: var(--dark);
            font-weight: 700;
        }

        .modal-description {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .modal-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            padding: 2rem;
            background: var(--light);
            border-radius: 8px;
        }

        .detail-item {
            text-align: center;
        }

        .detail-label {
            color: var(--secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .detail-value {
            font-size: 1.5rem;
            color: var(--dark);
            font-weight: 700;
        }

        .modal-price {
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .modal-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .icon {
            width: 24px;
            height: 24px;
            display: inline-block;
            margin-right: 0.5rem;
            vertical-align: middle;
        }

        footer {
            background: var(--dark);
            color: #fff;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255,184,28,0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            text-align: left;
        }

        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.2rem;
            }

            .logo {
                font-size: 1.4rem;
                letter-spacing: 0.5px;
            }

            nav ul {
                gap: 1.2rem;
            }

            nav a {
                font-size: 0.88rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            nav ul {
                position: absolute;
                top: 65px;
                left: 0;
                right: 0;
                background: rgba(11, 25, 41, 0.98);
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            nav ul.active {
                max-height: 500px;
            }

            nav ul li {
                padding: 0.8rem 2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            nav a {
                font-size: 0.95rem;
            }

            .nav-cta {
                display: block;
                margin: 0.5rem 2rem;
                text-align: center;
            }
        }

        @media (max-width: 600px) {
            nav {
                padding: 0.8rem 1rem;
            }

            .logo {
                font-size: 1.1rem;
                letter-spacing: 0;
            }

            .logo svg {
                width: 18px;
                height: 18px;
                margin-right: 0.5rem;
            }

            nav ul {
                top: 60px;
            }

            nav ul li {
                padding: 0.7rem 1.5rem;
            }

            nav ul li:first-child {
                padding-top: 0.5rem;
            }

            nav a {
                font-size: 0.9rem;
            }

            .nav-cta {
                margin: 0.3rem 1.5rem;
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }

            .hero {
                height: 500px;
                margin-top: 60px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(11, 25, 41, 0.98);
            backdrop-filter: blur(10px);
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 999;
            gap: 2rem;
            border-top: 1px solid rgba(255, 184, 28, 0.3);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-text {
            color: #fff;
            font-size: 0.95rem;
            flex: 1;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .btn-cookie {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .btn-cookie-accept {
            background: var(--accent);
            color: var(--dark);
        }

        .btn-cookie-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 184, 28, 0.3);
        }

        .btn-cookie-decline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-cookie-decline:hover {
            border-color: #fff;
        }

        /* Loader */
        .loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .loader-overlay.active {
            display: flex;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 184, 28, 0.3);
            border-top: 4px solid var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Success Modal */
        .success-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: white;
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            z-index: 2001;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            max-width: 400px;
        }

        .success-modal.show {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            pointer-events: auto;
        }

        .success-icon {
            width: 60px;
            height: 60px;
            background: #4CAF50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: popIn 0.5s ease;
        }

        .success-icon::before {
            content: '✓';
            color: white;
            font-size: 2rem;
            font-weight: bold;
        }

        @keyframes popIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .success-modal h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .success-modal p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .btn-close-modal {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-close-modal:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 2rem;
            background: #f5f7fa;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            padding: 1.5rem;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f0f7ff;
        }

        .faq-question h4 {
            color: var(--dark);
            font-size: 1.1rem;
            margin: 0;
            text-align: left;
        }

        .faq-toggle {
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s ease;
            min-width: 30px;
            text-align: right;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: #fafbfc;
            border-top: 1px solid #e0e8f0;
        }

        .faq-answer.show {
            max-height: 300px;
            padding: 1.5rem;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        @media (max-width: 768px) {
            .cookie-consent {
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .btn-cookie {
                width: 100%;
            }
        }