.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 20px); /* Kart genişliği sayfanın %33.333'ü olacak */
    height: 40vh; /* Kart yüksekliği sayfanın %40'ı olacak */
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 70%; /* Görüntünün kartın %70'ini kaplamasını sağla */
    object-fit: cover;
}

.card-body {
    height: 30%; /* Kartın alt kısmı %30 olacak */
    background: white;
    padding: 10px;
    box-sizing: border-box;
}

.load-more {
    display: inline-flex;
    align-items: center;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.load-more:hover {
    background-color: #0056b3;
}

.load-more-text {
    margin-right: 10px;
}

.load-more-icon {
    font-size: 18px;
}

@media (max-width: 768px) {
    .card {
        width: calc(100% - 20px); /* Küçük ekranlarda kart genişliği %100 olacak */
        height: 30vh; /* Küçük ekranlarda kart yüksekliği %30 olacak */
    }
}

.profile-image {
    width: 300px; /* Adjusted size */
    height: 380px; /* Adjusted size */
    object-fit: cover;
    border-radius: 15px; /* Makes the corners rounded */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.single_lawyer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.single_lawyer h3 {
    margin-top: 20px;
}

.single_lawyer span {
    margin-bottom: 20px;
}

.single_lawyer .social_links ul {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.single_lawyer .social_links ul li {
    margin: 0 10px;
}

.our_loyers {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}