/* Özellik Sayfası Stilleri */
.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.content-body h1,
.content-body h2,
.content-body h3 {
    color: #003d82;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
}

.feature-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.feature-gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.feature-gallery-item:hover img {
    transform: scale(1.05);
}

.feature-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-card {
    position: sticky;
    top: 100px;
}

@media (max-width: 991px) {
    .sidebar-card {
        position: static;
        margin-top: 2rem;
    }
}

