body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; margin: 0; color: #333; }
header { background: #0056b3; color: white; padding: 1rem 0; text-align: center; position: sticky; top: 0; z-index: 1000; }
nav { display: flex; justify-content: center; background: #004494; padding: 10px; }
nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: bold; }
.container { max-width: 1000px; margin: 20px auto; padding: 0 20px; }
.hero { background: #f4f4f4; padding: 40px; border-radius: 10px; text-align: center; border: 2px solid #0056b3; }
.btn { display: inline-block; background: #ff4757; color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-size: 1.2rem; transition: 0.3s; }
.btn:hover { background: #ff6b81; transform: scale(1.05); }
.footer { text-align: center; padding: 20px; background: #222; color: white; margin-top: 40px; }
h2 { color: #0056b3; border-bottom: 2px solid #eee; padding-bottom: 10px; }
.link-block { margin: 20px 0; padding: 15px; background: #e7f3ff; border-left: 5px solid #0056b3; }
.blog-feed { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.post-card { background: white; border: 1px solid #ddd; border-radius: 8px; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: 0.3s; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.post-card h3 { margin-top: 0; font-size: 1.3rem; color: #0056b3; }
.post-card p { font-size: 0.95rem; color: #666; }
.read-more { font-weight: bold; color: #ff4757; text-decoration: none; display: inline-block; margin-top: 10px; }
.read-more:hover { text-decoration: underline; }