        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.8;
            color: #2c3e50;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        .container-main {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            background: white;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .header {
            text-align: center;
            padding: 60px 0 40px 0;
            border-bottom: 3px solid #3498db;
            margin-bottom: 50px;
            position: relative;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 6px;
            background: linear-gradient(90deg, #3498db, #2980b9);
            border-radius: 3px;
        }

        .header h1 {
            font-size: 3em;
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: 300;
            letter-spacing: -1px;
        }

        .subtitle {
            font-size: 1.3em;
            color: #7f8c8d;
            font-style: italic;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        .blog-content {
            font-size: 1.1em;
            line-height: 1.9;
        }

        .blog-content h2 {
            font-size: 2.2em;
            color: #2c3e50;
            margin: 50px 0 25px 0;
            font-weight: 400;
            border-left: 5px solid #3498db;
            padding-left: 20px;
            position: relative;
        }

        .blog-content h2:first-of-type {
            margin-top: 0;
        }

        .blog-content h3 {
            font-size: 1.5em;
            color: #34495e;
            margin: 35px 0 20px 0;
            font-weight: 500;
        }

        .blog-content p {
            margin-bottom: 25px;
            text-align: justify;
            color: #34495e;
        }

        .blog-content strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .platform-link {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 8px 20px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            margin: 5px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .platform-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
            background: linear-gradient(135deg, #2980b9, #3498db);
        }

        .conditions-list {
            background: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }

        .conditions-list ul {
            list-style: none;
            margin: 20px 0;
        }

        .conditions-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1.05em;
            color: #34495e;
            transition: all 0.3s ease;
        }

        .conditions-list li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: #3498db;
            font-size: 1.5em;
            top: 8px;
        }

        .conditions-list li:hover {
            color: #2c3e50;
            padding-left: 40px;
        }

        .emergency-alert {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.1em;
            font-weight: 500;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .emergency-alert strong {
            font-size: 1.2em;
            display: block;
            margin-bottom: 10px;
        }

        .highlight-section {
            background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
            padding: 35px;
            margin: 40px 0;
            border-radius: 10px;
            border-left: 6px solid #3498db;
            position: relative;
            overflow: hidden;
        }

        .highlight-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1));
            pointer-events: none;
        }

        .cta-section {
            text-align: center;
            padding: 50px 0;
            margin-top: 60px;
            border-top: 2px solid #ecf0f1;
        }

        .cta-section h2 {
            font-size: 2.5em;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .cta-section p {
            font-size: 1.2em;
            color: #7f8c8d;
            margin-bottom: 35px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1em;
            margin: 10px 15px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::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.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
        }

        .cta-button.secondary {
            background: linear-gradient(135deg, #95a5a6, #7f8c8d);
            box-shadow: 0 8px 25px rgba(149, 165, 166, 0.3);
        }

        .cta-button.secondary:hover {
            box-shadow: 0 12px 35px rgba(149, 165, 166, 0.4);
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
                padding: 20px 15px;
            }
            
            .header h1 {
                font-size: 2.2em;
            }
            
            .subtitle {
                font-size: 1.1em;
            }
            
            .blog-content h2 {
                font-size: 1.8em;
            }
            
            .cta-button {
                display: block;
                margin: 10px 0;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }