        
        .font-sub-title{
            font-size: 18px !important;
        }
        
        .section-title {
           
            margin-bottom: 50px;
            color: #232f3e;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.4rem;
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .advantages-section {
            display: flex;
            flex-wrap: wrap;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .image-container {
            flex: 1;
            min-width: 300px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            position: relative;
        }
        
        .image-container img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .advantages-container {
            flex: 1;
            min-width: 300px;
            padding: 40px;
        }
        
        .advantage-card {
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 10px;
            background: white;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .advantage-card .content p{
            font-size: 1.2rem !important;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: #232f3e;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
        }
        
        .advantage-card:nth-child(1) .icon {
            background: linear-gradient(45deg, #ff9900, #ffcc00);
        }
        
        .advantage-card:nth-child(2) .icon {
            background: linear-gradient(45deg, #146eb4, #19aade);
        }
        
        .advantage-card:nth-child(3) .icon {
            background: linear-gradient(45deg, #8a2be2, #6495ed);
        }
        
        .advantage-card:nth-child(4) .icon {
            background: linear-gradient(45deg, #e63946, #f4a261);
        }
        .advantage-card:nth-child(5) .icon {
            background: linear-gradient(45deg, #ff9900, #ffcc00);
        }
        
        .content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #232f3e;
        }
        
        .content p {
            color: #666;
            font-size: 1rem;
        }
        
        @media (max-width: 768px) {
            .advantages-section {
                flex-direction: column;
            }
            
            .image-container, .advantages-container {
                width: 100% !important;
            }
            
            .advantage-card {
                flex-direction: column;
                text-align: center;
            }
            
            .icon {
                margin-right: 0;
                margin-bottom: 15px;
                align-self: center;
            }
        }



    /* section 3 */

            
        .custom-section-title {
            text-align: center;
            margin-bottom: 60px;
            color: #000;
        }
        
        .custom-section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }
        

        
        .custom-section-title p {
            font-size: 1.3rem;
            color: #444;
            margin: 20px auto 0;
        }
        
        .custom-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .custom-card {
            flex: 1;
            min-width: 300px;
            max-width: 380px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border-top: 5px solid var(--primary);
        }
        
        .custom-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-top: 5px solid var(--warning);
        }
        
        .custom-card-icon {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(120deg, var(--darkin), var(--primary));
            color: white;
            font-size: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .custom-card-icon:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }
        
        .custom-card:hover .custom-card-icon:after {
            transform: rotate(45deg) translate(20px, 20px);
        }
        
        .custom-card-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .custom-card-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }
        
        .custom-card-content h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .custom-card-content p {
            color: #555 !important;
            font-size: 1.1rem;
            flex-grow: 1;
        }
        
        .custom-card-button {
            display: inline-block;
            padding: 10px 20px;
            background: var(--darkin);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .custom-card-button:hover {
            background: var(--primary);
        }
        
        /* Renk varyasyonları için kart stilleri */
        .custom-card:nth-child(1) .custom-card-icon {
            background: linear-gradient(120deg, var(--primary), var(--warning));
        }
        
        .custom-card:nth-child(2) .custom-card-icon {
            background: linear-gradient(120deg, var(--primary), var(--warning));
        }
        
        .custom-card:nth-child(3) .custom-card-icon {
            background: linear-gradient(120deg, var(--primary), var(--warning));;
        }
        
        @media (max-width: 768px) {
            .custom-cards-container {
                flex-direction: column;
                align-items: center;
            }
            
            .custom-card {
                max-width: 100%;
            }
        }

        /* yol haritası */

        .pl {
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 20px;
            padding: 50px;
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1); */
            position: relative;
            overflow: hidden;
        }

        .pl::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
        }

        .main-title {
            font-size: 3rem;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 70px;
            letter-spacing: -0.02em;
            position: relative;
        }

        .main-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .timeline {
            position: relative;
            padding-left: 100px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 32px;
            top: 60px;
            bottom: 60px;
            width: 6px;
            background: linear-gradient(180deg, #ff6b35, #f7931e);
            border-radius: 3px;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 100px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .step-number {
            position: absolute;
            left: -120px;
            top: 10px;
            font-size: 3rem;
            font-weight: 700;
            color: #34495e;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .step-icon {
            position: absolute;
            left: -48px;
            top: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            font-weight: 600;
            z-index: 3;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4), 0 0 0 4px #ffffff;
            transition: all 0.3s ease;
        }

        .step-icon:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5), 0 0 0 4px #ffffff;
        }

        .step-content {
            background: #ffffff;
            border-radius: 0 20px 20px 0;
            padding: 40px;
            margin-left: 30px;
            border: 2px solid #e8f4f8;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .step-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, #ff6b35, #f7931e);
            border-radius: 0 0 0 20px;
        }

        .step-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: #ff6b35;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }

        .step-description {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.8;
            font-weight: 400;
        }

        .text-highlight {
            color: #ff6b35;
            font-weight: 600;
            background: linear-gradient(120deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
            padding: 2px 6px;
            border-radius: 4px;
        }

        .trademark-link {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .trademark-link:hover {
            border-bottom-color: #ff6b35;
        }

        @media (max-width: 768px) {
            .pl {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .main-title {
                font-size: 2.2rem;
                margin-bottom: 50px;
            }
            
            .timeline {
                padding-left: 90px;
            }
            
            .step-number {
                left: -80px;
                font-size: 2rem;
                top: 15px;
            }
            
            .step-icon {
                left: -35px;
                top: 25px;
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
            
            .step-content {
                margin-left: 20px;
                padding: 25px;
            }
            
            .step-title {
                font-size: 1.4rem;
            }
            
            .step-description {
                font-size: 1rem;
            }
            
            .timeline::before {
                left: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .main-title {
                font-size: 1.8rem;
            }
            
            .timeline {
                padding-left: 70px;
            }
            
            .step-number {
                left: -60px;
                font-size: 1.5rem;
            }
            
            .step-icon {
                left: -25px;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .timeline::before {
                left: 15px;
            }
        }


        /* satışlar */

        .image-background{
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
    height: 100%;
    background: var(--light);
   
} 

.baslik-private-label{
    background-color: white;
    border-bottom : 1px solid var(--success);
    margin-bottom: 0;
}


.Trademark{
    background-color: white;
    border-bottom : 1px solid var(--primary);
}

#Dezavantaj .baslik-private-label{
    background-color: white;
    border-bottom : 1px solid red;
}
 /* accodion icon  */
.accordion-button::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E");
}


.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3E%3C/svg%3E");
}


 /* satışlar slider */




#private{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--light);
}


.slider-wrapper{
    position: relative;
}

.slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    height: 50px;
    width: 50px;
    color: #000;
    border: none;
    outline: none;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-wrapper .slide-button:hover{ 
    color: var(--warning);
}

.image-list img{
    margin:0 54px;
    
}


.slider-wrapper .slide-button#prrev-slide{
    left: -20px;
    
}


.slider-wrapper .slide-button#next-slide{
    right: -10px; 
}

@media (max-width:768px){
    .image-list img{
        margin:0 45px;
        
    }

    .font-size-title-pl{
        font-size: 30px !important;
    }
}


#private .slider-wrapper .image-list{
    display: grid;
    overflow-x: auto;
    font-size: 0;
    scrollbar-width: none;
    margin-bottom: 30px;
    grid-template-columns: repeat(16, 1fr);
}

.slider-wrapper .image-list::-webkit-scrollbar{
display: none;
}


#private .slider-wrapper .image-list .image-item{
    width: 315px;
    height: 500px;
    object-fit: cover;
   
}


#private .slider-wrapper .image-list #image-item{
    width: 800px;
    height: 300px;
    object-fit: contain;
   
}

#private .slider-scrollbar{
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.slider-scrollbar .scrollbar-track{
    height: 2px;
    width: 100%;
    background: var(--light);
    position: relative;
    border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track{
    height: 4px;
}


.slider-scrollbar .scrollbar-thumb{
    position: absolute;
    height: 100%;
    width: 50%;
    background: #000;
    border-radius: inherit;
    cursor: grab;
}


.slider-scrollbar .scrollbar-thumb:active{
    cursor: grabbing;
    height: 8px;
    top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;

}

.avantaj-image{
    height:100%;
    width: 100%;
}

.avantaj-image img{
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.accordion-item button{
    font-size: 16px !important;
}

.accordion-body {
    font-size: 18px;
}
