
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #ffffff;
        }
        
        .article-container {
            max-width: 100%;
            margin: 0 auto;
            background-color: #fff;
        }
        
        .article-header {
            background: linear-gradient(135deg, #30A0FF 0%, #1e7ed6 100%);
            color: white;
            padding: 50px 20px;
            text-align: center;
        }
        
        .article-header h1 {
            font-size: 2.2em;
            margin-bottom: 15px;
            line-height: 1.3;
            font-weight: 700;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .meta-info {
            font-size: 1em;
            opacity: 0.95;
            margin-top: 15px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .article-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .article-content h2 {
            font-size: 1.8em;
            color: #2c3e50;
            margin-top: 40px;
            margin-bottom: 20px;
            border-left: 5px solid #30A0FF;
            padding-left: 15px;
            font-weight: 600;
        }
        
        .article-content h3 {
            font-size: 1.4em;
            color: #34495e;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .article-content p {
            margin-bottom: 18px;
            font-size: 1.05em;
            line-height: 1.8;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #30A0FF15 0%, #1e7ed615 100%);
            border-left: 4px solid #30A0FF;
            padding: 25px;
            margin: 25px 0;
            border-radius: 5px;
        }
        
        .highlight-box p {
            margin-bottom: 0;
        }
        
        .event-details {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            border: 2px solid #30A0FF;
        }
        
        .event-details h3 {
            margin-top: 0;
            color: #30A0FF;
            font-size: 1.3em;
        }
        
        .event-details ul {
            list-style: none;
            padding-left: 0;
            margin: 15px 0 0 0;
        }
        
        .event-details li {
            padding: 8px 0;
            font-size: 1.05em;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .event-details li:last-child {
            border-bottom: none;
        }
        
        .event-details strong {
            color: #30A0FF;
            display: inline-block;
            min-width: 160px;
        }
        
        .inquiry-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1e7ed6 100%);
            color: white;
            padding: 40px 20px;
            margin: 40px 0;
            border-radius: 10px;
            text-align: center;
        }
        
        .inquiry-section h3 {
            color: white;
            margin: 0 0 20px 0;
            font-size: 1.6em;
        }
        
        .inquiry-section p {
            margin-bottom: 25px;
            font-size: 1.1em;
        }
        
        .inquiry-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .inquiry-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: #30A0FF;
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05em;
            transition: all 0.3s ease;
            border: 2px solid white;
            min-width: 200px;
        }
        
        .inquiry-btn:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .inquiry-btn svg {
            margin-right: 8px;
            width: 20px;
            height: 20px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1e7ed6 100%);
            color: white;
            padding: 50px 20px;
            text-align: center;
            margin-top: 40px;
        }
        
        .cta-section h2 {
            color: white;
            border: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .cta-section p {
            max-width: 800px;
            margin: 0 auto 15px auto;
            font-size: 1.1em;
        }
        
        .author-section {
            background: #f8f9fa;
            padding: 35px 20px;
            margin-top: 40px;
            border-top: 3px solid #30A0FF;
        }
        
        .author-section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .author-section h3 {
            margin-top: 0;
            color: #30A0FF;
        }
        
        .article-content ul {
            margin: 15px 0;
            padding-left: 35px;
        }
        
        .article-content li {
            margin-bottom: 10px;
            font-size: 1.05em;
        }
        
        strong {
            color: #2c3e50;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 1.6em;
            }
            
            .article-content h2 {
                font-size: 1.5em;
            }
            
            .article-content h3 {
                font-size: 1.2em;
            }
            
            .event-details strong {
                display: block;
                min-width: 100%;
                margin-bottom: 5px;
            }
            
            .inquiry-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .inquiry-btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }
    