
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            border-radius: 10px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        
        .header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .date-badge {
            display: inline-block;
            background-color: #e74c3c;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            margin-top: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .content-section {
            display: flex;
            flex-direction: column;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .section-block {
            display: flex;
            align-items: center;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .section-block:hover {
            transform: translateY(-5px);
        }
        
        .text-content {
            flex: 1;
            padding: 30px;
        }
        
        .image-content {
            flex: 1;
            padding: 20px;
            text-align: center;
        }
        
        .image-content img {
            width: 100%;
            max-width: 500px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .icon {
            width: 50px;
            height: 50px;
            background-color: #3498db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 1.5rem;
        }
        
        h2 {
            color: #2c3e50;
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .highlight-box {
            background-color: #f1f8ff;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .quote {
            font-style: italic;
            color: #7f8c8d;
            padding: 15px;
            border-left: 3px solid #e74c3c;
            background-color: #f9f9f9;
            margin: 20px 0;
        }
        
        .footer {
            text-align: center;
            padding: 30px;
            background-color: #2c3e50;
            color: white;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .footer p {
            margin-bottom: 10px;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #34495e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-icon:hover {
            background-color: #3498db;
        }
        
        @media (max-width: 768px) {
            .section-block {
                flex-direction: column;
            }
            
            .text-content, .image-content {
                width: 100%;
            }
            
            .header h1 {
                font-size: 2.2rem;
            }
        }
    