/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2 {
    color: #02569b; /* Flutter blue */
}

/* Header */
.blog-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.blog-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Main Blog Content */
.blog-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Blog Post Card */
.blog-post {
    background-color: #fff;
    margin-bottom: 40px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.blog-post img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

/* Titles and Text */
.blog-post h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-post p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.blog-post ol,
.blog-post ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.blog-post li {
    margin-bottom: 8px;
}

/* Buttons (Optional) */
.btn {
    display: inline-block;
    background-color: #02569b;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #014a7c;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }

    .blog-post h2 {
        font-size: 1.5rem;
    }
}
