
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', 'Microsoft JhengHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: white;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border-radius: 20px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        .header {
            text-align: center;
            padding: 50px 0;
            background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
            color: white;
            border-radius: 20px 20px 0 0;
            margin: -20px -20px 40px -20px;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .header h1 {
            font-size: 2.8em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }
        
        .header p {
            font-size: 1.3em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .content-section {
            margin: 40px 0;
            padding: 35px;
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
            border-radius: 15px;
            border-left: 6px solid #ff6b6b;
            box-shadow: 0 8px 25px rgba(255,107,107,0.1);
        }
        
        h2 {
            color: #ff6b6b;
            font-size: 2.2em;
            margin-bottom: 25px;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            border-radius: 3px;
        }
        
        h3 {
            color: #555;
            font-size: 1.6em;
            margin: 30px 0 18px 0;
            padding-left: 20px;
            border-left: 4px solid #ff6b6b;
            position: relative;
        }
        
        h3::before {
            content: '🐕';
            position: absolute;
            left: -30px;
            font-size: 1.2em;
        }
        
        p {
            margin-bottom: 18px;
            font-size: 1.15em;
            line-height: 1.9;
            color: #444;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 35px 0;
            border: 2px solid #ff6b6b;
            box-shadow: 0 10px 25px rgba(255,107,107,0.3);
            position: relative;
            overflow: hidden;
        }
        
        .highlight-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            z-index: -1;
            border-radius: 15px;
        }
        
        .highlight-box h3 {
            color: #fff;
            border-left: 4px solid #fff;
            margin-bottom: 18px;
        }
        
        .check-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        
        .check-item {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(102,126,234,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .check-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        
        .check-item:hover::before {
            left: 100%;
        }
        
        .check-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(102,126,234,0.3);
        }
        
        .check-item h4 {
            font-size: 1.4em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .check-item h4::before {
            content: '✓';
            background: rgba(255,255,255,0.2);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 0.9em;
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .price-table th {
            background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
            color: white;
            padding: 25px;
            text-align: left;
            font-size: 1.3em;
            position: relative;
        }
        
        .price-table th::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #45b7d1, #96e6a1);
        }
        
        .price-table td {
            padding: 20px 25px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 1.15em;
            transition: background 0.3s ease;
        }
        
        .price-table tr:nth-child(even) {
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
        }
        
        .price-table tr:hover {
            background: linear-gradient(135deg, #ffe8e8 0%, #e8f4ff 100%);
            transform: scale(1.01);
        }
        
        .price {
            font-weight: bold;
            color: #ff6b6b;
            font-size: 1.3em;
        }
        
        .faq-section {
            margin: 40px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }
        
        .faq-item {
            border-bottom: 2px solid #f0f0f0;
            margin-bottom: 20px;
        }
        
        .faq-question {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            cursor: pointer;
            border-radius: 10px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }
        
        .faq-question:hover::before {
            left: 100%;
        }
        
        .faq-question:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102,126,234,0.3);
        }
        
        .faq-question h4 {
            font-size: 1.3em;
            margin: 0;
            padding-right: 40px;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8em;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
            border-radius: 0 0 10px 10px;
        }
        
        .faq-answer.active {
            max-height: 400px;
            padding: 25px;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
            position: relative;
            z-index: 1;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.15);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.2);
        }
        
        .contact-item h4 {
            font-size: 1.4em;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-item h4::before {
            content: attr(data-icon);
            margin-right: 12px;
            font-size: 1.3em;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.3em;
            font-weight: bold;
            margin: 25px 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(37,211,102,0.3);
            position: relative;
            z-index: 1;
        }
        
        .whatsapp-btn:hover {
            background: linear-gradient(135deg, #20c158 0%, #0d7377 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(37,211,102,0.4);
        }
        
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.3em;
            font-weight: bold;
            margin: 25px 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(253,216,155,0.3);
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(253,216,155,0.4);
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2em;
            }
            
            .container {
                margin: 10px;
                padding: 15px;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .check-list {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
    