/* General Blog Page Styles */
.hero-blog {
    text-align: center;
    padding: 80px 20px;
    background: url('../images/blog-page-banner.jpg') center/cover no-repeat;
    color: white;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-blog h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-blog p {
    font-size: 20px;
    line-height: 1.5;
}

/* Blog Section */
.blog-section {
    padding: 60px 40px;
    background: #f8f9fa;
}

.blog-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.blog-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.blog-image img {
    width: 100%;
    min-height: 40vh;
    max-height: 40vh;
    height: 70vh;
    display: block;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.btn-secondary {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: #0056b3;
}

/* Call to Action Section */
.cta {
    text-align: center;
    padding: 50px 40px;
    background-color: #007bff;
    color: white;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
