body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding: 60px 0;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    color: #111827;
}

.card {
    border-radius: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}

.card-img-top {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-secondary {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

footer a:hover {
    text-decoration: underline !important;
}

img {
    max-width: 100%;
    display: block;
}

.table th,
.table td {
    vertical-align: middle;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.pagination .page-link {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

form .form-control, form .form-select {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

form .form-control:focus, form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.25);
}

@media (max-width: 992px) {
    .card-img-top {
        height: 150px;
    }
    h1, h2 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 8px 20px;
    }
}