@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
}

.profile-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.breadcrumbs {
    background-color: #f8f9fa;
    padding: 1rem 0;
}

.breadcrumbs a {
    color: #e11d48;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination a {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e11d48;
    border-radius: 0.25rem;
    color: #e11d48;
}

.pagination a:hover {
    background-color: #e11d48;
    color: white;
}

@media (max-width: 640px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}