body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
    overflow-x: hidden;
    padding-top: 72px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #111827;
}

.hero p {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 28px;
}

/* Card Style */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.card-body p {
    line-height: 1.6;
    color: #374151;
}

.pagination-container {
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 6px;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    border: none;
    background-color: #fff;
    color: #2563eb;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    box-shadow: 0 0 0 1px #d1d5db inset;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: #2563eb;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #2563eb;
    color: #fff;
    box-shadow: none;
}

/* Buttons */
.btn-outline-primary {
    border-radius: 999px;
    font-weight: 500;
}

.btn-outline-secondary.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 16px;
    }

    .pagination .page-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.filter-form {
    background-color: #f9fafb;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.filter-form input,
.filter-form select {
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
}

.filter-form input:focus,
.filter-form select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}

.hero {
    position: relative;
    background: url('https://plus.unsplash.com/premium_photo-1663013462043-1caddf51bae1?fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTN8fHNjaWVuY2UlMjBsYWJ8ZW58MHx8MHx8fDA%3D&ixlib=rb-4.1.0&q=60&w=3000') center center/cover no-repeat;
    height: 20vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}
