        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }
        
        body {
            font-family: Arial, sans-serif;
            background-color: #fff8f0;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(135deg, #ff6b35, #ff8e35);
            color: white;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        
        header h1 {
            font-size: 28px;
            margin: 0;
        }
        
        nav {
            background: linear-gradient(135deg, #ff8e35, #ffb347);
            padding: 10px;
            text-align: center;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 20px;
            font-size: 16px;
        }
        
        nav a:hover {
            text-decoration: underline;
        }
        
        section {
            background-color: white;
            margin: 20px auto;
            padding: 30px;
            border-radius: 10px;
            max-width: 800px;
            box-shadow: 0 2px 8px rgba(255, 140, 0, 0.1);
        }
        
        h2, h3 {
            color: #d32f2f;
            margin-bottom: 15px;
        }
        
        .tour-hero {
            text-align: center;
            padding: 40px;
            background: url('https://i.pinimg.com/736x/9e/12/cc/9e12cc7fd61d3013f36027d5a973b6b0.jpg') center/cover;
            color: white;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .tour-hero h1 {
            font-size: 32px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        
        .tour-hero p {
            font-size: 18px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }
        
        .price-box {
            background: linear-gradient(135deg, #ff6b35, #ff8e35);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .rating {
            color: #ffb347;
            font-size: 18px;
            margin: 10px 0;
        }
        
        .btn {
            background: linear-gradient(135deg, #ff6b35, #ff8e35);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
            margin: 10px 0;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, #e55a2b, #ff7a2b);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
        }
        
        .highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        
        .highlight-card {
            background-color: #fff8f0;
            border: 2px solid #ffb347;
            padding: 20px;
            border-radius: 15px;
            flex: 1;
            min-width: 200px;
            transition: all 0.3s ease;
        }
        
        .highlight-card:hover {
            border-color: #ff8e35;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 142, 53, 0.2);
        }
        
        .program-day {
            background-color: #fff8f0;
            border: 2px solid #ffb347;
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 15px;
        }
        
        .day-title {
            font-size: 18px;
            font-weight: bold;
            color: #d32f2f;
            margin-bottom: 15px;
        }
        
        ul {
            margin-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
            color: #333;
        }
        
        .included-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        
        .included-item {
            background-color: #fff8f0;
            border: 1px solid #ffb347;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        
        .info-box {
            background-color: #fff8f0;
            border: 2px solid #ffb347;
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
        }
        
        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #ffb347;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .special-offer {
            background: linear-gradient(135deg, #d32f2f, #ff6b35);
            color: white;
            padding: 15px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
        }
        
        footer {
            background: linear-gradient(135deg, #333, #555);
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            .highlights {
                flex-direction: column;
            }
            
            .included-grid {
                flex-direction: column;
            }
            
            section {
                margin: 10px;
                padding: 20px;
            }
        }