.about-ctp-intro {
    padding: 100px 0 60px 0;
    background: radial-gradient(circle at top left, #ffffff, #f9fbff);
    margin-bottom: 50px;
}

.ctp-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.ctp-main-desc {
    flex: 1.2;
}

.tech-label {
    color: #4da3ff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.ctp-main-desc h2 {
    font-size: 42px;
    color: #0A3D62;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ctp-main-desc p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
}


.ctp-terminology {
    flex: 0.8;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(10, 61, 98, 0.05);
    border: 1px solid #f0f0f0;
}

.term-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.term-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.term-flag {
    background: #0A3D62;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.term-text strong {
    display: block;
    font-size: 20px;
    color: #0A3D62;
}

.term-text span {
    font-size: 14px;
    color: #777;
}

/* Responsive */
@media (max-width: 991px) {
    .ctp-flex-container {
        flex-direction: column;
        text-align: center;
    }
    .term-item {
        text-align: left;
    }
}


/* Ana Grid Yapısı Liste */
.dual-flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2'li Yan Yana */
    gap: 40px 80px; /* Maddeler arası dikey ve yatay boşluk */
    position: relative;
    padding: 40px 0;
}

/* Maddeler Arasındaki Ayırıcı Çizgi (Süsleme) */
.dual-flow-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #4da3ff, transparent);
    transform: translateX(-50%);
}

/* Her Bir Madde (Item) */
.flow-item {
    position: relative;
    transition: all 0.3s ease;
}

.flow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* İkon Kutusu */
.flow-icon-box {
    width: 50px;
    height: 50px;
    background: #0A3D62; 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(10, 61, 98, 0.2);
}

/* Numara Süslemesi */
.flow-num {
    font-size: 40px;
    font-weight: 900;
    color: rgba(77, 163, 255, 0.1); /* Hafif görünür büyük rakam */
    line-height: 1;
}

/* Başlık ve Metin */
.flow-item h3 {
    color: #0A3D62;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.flow-item p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Hover Efekti (Süsleme) */
.flow-item:hover {
    transform: translateX(5px);
}

.flow-item:hover .flow-icon-box {
    background: #4da3ff; /* Hoverda parlayan mavi */
    transform: scale(1.1);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .dual-flow-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 40px;
    }
    .dual-flow-grid::before {
        left: 0; /* Mobilde çizgiyi sola çek */
    }
}