.degerler-alani-bg {
    background-color: #1a1a1a;
    padding: 80px 20px;
}

.degerler-alani-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.degerler-title {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.degerler-title .orange-text {
    color: #F6861F;
}

.degerler-title-border {
    width: 100%;
    height: 3px;
    background: #F6861F;
    margin-bottom: 50px;
    border-radius: 2px;
}

.degerler-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.deger-card {
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 4px;
    text-align: left;
    box-shadow: 5px 5px 0px 0px #F6861F;
    transition: transform 0.3s ease;
}

    .deger-card:hover {
        transform: translateY(-10px);
    }

    .deger-card h4 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .deger-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #666;
    }

/* Responsive Media Queries */

/* Tablet and below */
@media (max-width: 768px) {
    .degerler-alani-bg {
        padding: 60px 15px;
    }
    
    .degerler-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .degerler-cards-grid {
        gap: 20px;
    }
    
    .deger-card {
        padding: 25px;
    }
    
    .deger-card h4 {
        font-size: 1.2rem;
    }
}

/* Horizontal Scroll - up to 1200px */
@media (max-width: 1200px) {
    .degerler-alani-bg {
        padding: 50px 0;
    }
    
    .degerler-alani-container {
        padding: 0 15px;
        overflow: hidden;
    }
    
    .degerler-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .degerler-title-border {
        margin-bottom: 30px;
    }
    
    .degerler-cards-grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 15px 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #999 #f1f1f1;
    }

    .deger-card:hover {
        transform: none;
    }
    
    /* Webkit scrollbar styling - Gri renk */
    .degerler-cards-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .degerler-cards-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .degerler-cards-grid::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 10px;
    }
    
    .degerler-cards-grid::-webkit-scrollbar-thumb:hover {
        background: #777;
    }
    
    .deger-card {
        flex: 0 0 280px;
        width: 280px;
        min-height: auto;
        padding: 20px;
    }
    
    .deger-card h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .deger-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Very small screens - up to 400px */
@media (max-width: 400px) {
    .degerler-alani-bg {
        padding: 40px 0;
    }
    
    .degerler-title {
        font-size: 1.5rem;
    }
    
    .deger-card {
        flex: 0 0 260px;
        width: 260px;
        padding: 18px;
    }
    
    .deger-card h4 {
        font-size: 1rem;
    }
    
    .deger-card p {
        font-size: 0.8rem;
    }
}
