.uzmanliklar-container {
    padding: 50px 20px;
    background-color: #fdf0f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.uzmanliklar-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.uzmanliklar-header p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.uzmanliklar-grid {
    display: grid; /* Flex yerine Grid kullanıyoruz */
    grid-template-columns: repeat(3, 1fr); /* Varsayılan 3 sütun */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.uzmanlik-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%; /* Kartların boyunu eşitler */
}

.uzmanlik-card:hover {
    transform: translateY(-5px);
}

.uzmanlik-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uzmanlik-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.uzmanlik-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.uzmanlik-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uzmanlik-description {
    color: #777;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.uzmanlik-button-wrapper {
    margin-top: auto;
}

.uzmanlik-button {
    display: inline-block;
    background-color: #802040;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s ease;
}

.uzmanlik-button:hover {
    background-color: #601830;
    color: #fff;
}

/* Responsive Ayarlar Elementor tarafından yönetilecek ancak fallback olarak: */
@media (max-width: 1024px) {
    .uzmanliklar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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