:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.list-group-item {
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(3px);
}

footer a:hover {
    color: white !important;
}

.pagination .page-link {
    border-radius: 50%;
    margin: 0 2px;
    min-width: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .display-4 {
        font-size: 2.5rem;
    }
}
