/* About New Section Styles */
.about-new {
    background: #ffffff;
    padding: 70px 20px 100px 20px;
    margin: 0;
}

.about-new .container {
    max-width: 1450px;
    margin: 0 auto;
}

.about-new-content {
    display: grid;
    grid-template-columns: 512px 1fr;
    gap: 110px;
    align-items: flex-start;
}

/* Sol Taraf: Görsel */
.about-new-left {
    position: relative;
}

.about-new-image {
    width: 512px;
    height: 512px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin: 0 auto;
}

.about-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sağ Taraf: İçerik */
.about-new-right {
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 20px; */
}

/* Badge */
.about-new-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary, #1abdb8) 0%, rgba(var(--primary-rgb, 26, 189, 184), 0.9) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb, 26, 189, 184), 0.3);
}

/* Başlık */
.about-new-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

/* Açıklama */
.about-new-description {
    margin-top: 0;
}

.about-description-columns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.about-description-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-paragraph-item {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

.about-paragraph-item p {
    margin: 0;
    line-height: 1.8;
}

.about-title-link {
    color: var(--primary, #1abdb8);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.about-title-link:hover {
    color: var(--primary, #159a96);
    text-decoration: underline;
}

/* Özellikler */
.about-new-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
}

.about-feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.about-feature-box:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about-feature-icon i {
    font-size: 20px;
    color: var(--primary, #1abdb8);
}

.about-feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-new {
        padding: 80px 20px;
    }
    
    .about-new-content {
        gap: 75px;
    }
    
    .about-new-title {
        font-size: 24px;
    }
    
    .about-new-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .about-description-columns {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-new {
        padding: 0 20px 70px 20px;
    }
    
    .about-new-content {
        grid-template-columns: 1fr;
        gap: 75px;
    }
    
    .about-new-left {
        order: 1;
        width: 100%;
    }
    
    .about-new-right {
        order: 2;
        width: 100%;
    }
    
    .about-new-title {
        font-size: 22px;
    }
    
    .about-description-columns {
        gap: 16px;
    }
    
    .about-new-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
        margin: 0;
    }
    
    .about-new-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-feature-box {
        padding: 12px 14px;
    }
    
    .about-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .about-feature-icon i {
        font-size: 20px;
    }
    
    .about-feature-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-new {
        padding: 0 20px 40px 20px;
    }
    
    .about-new-title {
        font-size: 24px;
    }
    
    .about-paragraph-item {
        font-size: 14px;
    }
    
    .about-feature-text {
        font-size: 14px;
    }
}

