
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Microsoft JhengHei', sans-serif;
            line-height: 1.8;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .header {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
        }
        
        .header h1 {
            font-size: 2.8em;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .header p {
            font-size: 1.2em;
            opacity: 0.95;
        }
        
        .content-section {
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
            border-radius: 15px;
            border-left: 5px solid #ff6b6b;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .content-section h2 {
            color: #2d3748;
            font-size: 2.2em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff6b6b;
            position: relative;
        }
        
        .content-section h2:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ee5a24;
        }
        
        .content-section h3 {
            color: #4a5568;
            font-size: 1.6em;
            margin: 25px 0 15px 0;
            padding: 10px 15px;
            background: linear-gradient(90deg, #ff6b6b, #ee5a24);
            color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
        }
        
        .content-section p {
            margin-bottom: 18px;
            font-size: 1.1em;
            color: #2d3748;
            text-align: justify;
        }
        
        .content-section ul, .content-section ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .content-section li {
            margin-bottom: 12px;
            font-size: 1.05em;
            color: #4a5568;
        }
        
        .faq-section {
            background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        }
        
        .faq-section h2 {
            text-align: center;
            color: #2d3748;
            font-size: 2.5em;
            margin-bottom: 30px;
            position: relative;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: #ff6b6b;
            transform: translateY(-2px);
        }
        
        .faq-question {
            background: linear-gradient(90deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 20px 25px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(90deg, #ee5a24, #c44569);
        }
        
        .faq-question .icon {
            font-size: 1.2em;
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }
        
        .faq-answer.active {
            padding: 25px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #4a5568;
            font-size: 1.05em;
            margin-bottom: 15px;
        }
        
        .price-table {
            background: linear-gradient(135deg, #e8f5ff 0%, #b3d9ff 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .price-table h2 {
            text-align: center;
            color: #2d3748;
            font-size: 2.5em;
            margin-bottom: 30px;
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .price-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: translateY(-8px);
            border-color: #ff6b6b;
            box-shadow: 0 20px 50px rgba(255, 107, 107, 0.2);
        }
        
        .price-card h3 {
            color: #ff6b6b;
            font-size: 1.8em;
            margin-bottom: 15px;
            background: none;
            padding: 0;
        }
        
        .price {
            font-size: 2.5em;
            font-weight: bold;
            color: #2d3748;
            margin: 15px 0;
        }
        
        .price-card ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        
        .price-card li {
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
            color: #4a5568;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            margin: 50px 0;
            text-align: center;
            box-shadow: 0 20px 50px rgba(45, 55, 72, 0.3);
        }
        
        .contact-section h2 {
            font-size: 2.8em;
            margin-bottom: 30px;
            color: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .contact-item h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #ff6b6b;
            background: none;
            padding: 0;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            margin: 20px 10px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            color: white;
        }
        
        .cta-btn {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            margin: 20px 10px;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
            text-decoration: none;
            color: white;
        }
        
        @media (max-width: 768px) {
            .container {
                margin: 10px;
                padding: 15px;
                border-radius: 15px;
            }
            
            .header h1 {
                font-size: 2.2em;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .content-section h2 {
                font-size: 1.8em;
            }
            
            .contact-section, .faq-section, .price-table {
                padding: 25px;
            }
            
            .price-grid, .contact-grid {
                grid-template-columns: 1fr;
            }
        }
    