/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f9;
    color: #264653;
    overflow-x: hidden;
}

.header {
    background: #264653;
    color: #f4f4f9;
    text-align: center;
    padding: 30px;
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    opacity: 0;
    transition: all 0.6s ease;
}

.blog-card h2 {
    color: #e76f51;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.blog-card ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: disc inside;
}

.blog-card.animate {
    transform: rotateY(360deg);
    opacity: 1;
}

/* Footer */
.footer {
    background: #264653;
    color: #f4f4f9;
    text-align: center;
    padding: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-card {
        max-width: 90%;
    }
}
