
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft JhengHei', 'PingFang TC', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
        }
        
        .article-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .article-header {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(33, 150, 243, 0.3);
        }
        
        .article-header h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .article-meta {
            font-size: 1em;
            opacity: 0.95;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .main-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }
        
        .content-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .content-section h2 {
            color: #1e88e5;
            font-size: 2em;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2196F3;
        }
        
        .content-section h3 {
            color: #2196F3;
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1em;
            text-align: justify;
        }
        
        .intro-text {
            font-size: 1.2em;
            color: #555;
            line-height: 2;
            margin-bottom: 30px;
            padding: 25px;
            background: #e3f2fd;
            border-left: 5px solid #2196F3;
            border-radius: 8px;
        }
        
        .causes-list {
            list-style: none;
            padding: 0;
        }
        
        .causes-list li {
            background: #f8f9fa;
            margin: 20px 0;
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #1e88e5;
            transition: all 0.3s ease;
        }
        
        .causes-list li:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.2);
        }
        
        .causes-list li strong {
            color: #1e88e5;
            font-size: 1.3em;
            display: block;
            margin-bottom: 10px;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        
        .info-table thead {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
        }
        
        .info-table th, .info-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .info-table th {
            font-size: 1.1em;
            font-weight: 600;
        }
        
        .info-table tbody tr:hover {
            background-color: #e3f2fd;
        }
        
        .warning-box {
            background: #fff3e0;
            border-left: 5px solid #ff9800;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
        }
        
        .warning-box h3 {
            color: #f57c00;
            margin-top: 0;
        }
        
        .tips-box {
            background: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
        }
        
        .tips-box h3 {
            color: #388e3c;
            margin-top: 0;
        }
        
        .faq-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .faq-section h2 {
            color: #1e88e5;
            font-size: 2em;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background: linear-gradient(135deg, #f5f5f5 0%, #e3f2fd 100%);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: 600;
            color: #1e88e5;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5em;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }
        
        .faq-answer.active {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 20px;
            line-height: 1.8;
            color: #555;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 50px 40px;
            border-radius: 15px;
            margin-top: 40px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(33, 150, 243, 0.3);
        }
        
        .contact-section h2 {
            font-size: 2em;
            margin-bottom: 30px;
            color: white;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .contact-item strong {
            display: block;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        .whatsapp-btn {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: bold;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-btn:hover {
            background: #20BA5A;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }
        
        @media (max-width: 768px) {
            .article-header {
                padding: 40px 25px;
            }
            
            .article-header h1 {
                font-size: 1.8em;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .content-section h2 {
                font-size: 1.6em;
            }
            
            .info-table {
                font-size: 0.9em;
            }
            
            .info-table th, .info-table td {
                padding: 12px 8px;
            }
        }
    