* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.why-choose-us-section {
    background-color: #f8f9fa;
    padding: 80px 0;
   font-family: 'Futura PT', sans-serif;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content {
    padding-right: 20px;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.quality-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.quality-tag {
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

.image-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #000;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: background-color 0.3s ease;
}

.slider-arrows:hover {
    background-color: #000;
    color: white;
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-content {
        padding-right: 0;
        text-align: center;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .quality-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-choose-container {
        padding: 0 15px;
    }

    .why-choose-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .image-slider {
        height: 300px;
    }

    .quality-tags {
        flex-wrap: wrap;
        gap: 10px;
    }

    .quality-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .image-slider {
        height: 250px;
    }

    .slider-arrows {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}