
        * {
            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%, #e8f4f8 100%);
        }
        
        article {
            max-width: 1000px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 10px 40px rgba(30, 136, 229, 0.1);
            border-radius: 16px;
            overflow: hidden;
        }
        
        header {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1;
        }
        
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 0.95em;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .meta-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        
        .content {
            padding: 50px 40px;
        }
        
        .intro {
            font-size: 1.15em;
            line-height: 2;
            color: #555;
            padding: 30px;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-left: 5px solid #2196F3;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.1);
        }
        
        h2 {
            color: #1e88e5;
            font-size: 2em;
            margin: 50px 0 25px 0;
            padding-bottom: 15px;
            border-bottom: 3px solid #2196F3;
            position: relative;
        }
        
        h2::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: #1e88e5;
        }
        
        h3 {
            color: #1976d2;
            font-size: 1.5em;
            margin: 35px 0 20px 0;
            padding-left: 20px;
            border-left: 4px solid #2196F3;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.05em;
            text-align: justify;
        }
        
        .cause-card {
            background: #ffffff;
            border: 2px solid #e3f2fd;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(30, 136, 229, 0.08);
            transition: all 0.3s ease;
        }
        
        .cause-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(30, 136, 229, 0.15);
            border-color: #2196F3;
        }
        
        .cause-number {
            display: inline-block;
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
        }
        
        ul {
            margin: 20px 0 20px 30px;
        }
        
        li {
            margin-bottom: 12px;
            font-size: 1.05em;
            line-height: 1.8;
            position: relative;
            padding-left: 10px;
        }
        
        li::marker {
            color: #2196F3;
            font-weight: bold;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(30, 136, 229, 0.08);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .info-table th {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 18px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1em;
        }
        
        .info-table td {
            padding: 18px;
            border-bottom: 1px solid #e3f2fd;
            font-size: 1.05em;
        }
        
        .info-table tr:nth-child(even) {
            background-color: #f8fbff;
        }
        
        .info-table tr:hover {
            background-color: #e3f2fd;
            transition: background-color 0.3s ease;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-left: 5px solid #ff9800;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.1);
        }
        
        .warning-box h3 {
            color: #f57c00;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        
        .tip-box {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-left: 5px solid #4caf50;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.1);
        }
        
        .tip-box h3 {
            color: #388e3c;
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        
        .faq-section {
            background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
            padding: 50px 40px;
            margin-top: 50px;
            border-radius: 12px;
        }
        
        .faq-section h2 {
            text-align: center;
            color: #1e88e5;
            margin-bottom: 40px;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 25px rgba(30, 136, 229, 0.15);
        }
        
        .faq-question {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 20px 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #1976d2 0%, #1e88e5 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, padding 0.3s ease;
            background: white;
        }
        
        .faq-answer.active {
            max-height: 500px;
            padding: 25px;
            border-top: 2px solid #e3f2fd;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #1e88e5 0%, #2196F3 100%);
            color: white;
            padding: 50px 40px;
            margin-top: 50px;
            border-radius: 12px;
            text-align: center;
        }
        
        .contact-section h2 {
            color: white;
            border-bottom: 3px solid rgba(255,255,255,0.3);
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
            text-align: left;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }
        
        .contact-item strong {
            display: block;
            font-size: 1.1em;
            margin-bottom: 10px;
            color: #fff;
        }
        
        .whatsapp-button {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.15em;
            margin-top: 30px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
        }
        
        .whatsapp-button:hover {
            background: #20BA5A;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }
        
        @media (max-width: 768px) {
            header {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 1.8em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .featured-image {
                height: 300px;
            }
            
            .meta-info {
                flex-direction: column;
                gap: 10px;
            }
            
            .cause-card {
                padding: 20px;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
        }
    