.section-area {
    padding: 82px 0px 82px;
    text-align: center;
    max-width: 100%;
    width: 750px;
    margin: auto;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.section-titles {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.section-first-title {
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    color: #22282B;
    text-align: center;
}

.section-title {
    font-family: Manrope;
    font-weight: 700;
    font-size: 42px;
    text-align: center;
    color: #22282B;

}

.section-description {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    color: #22282B;
    text-align: center;
}

.section-ust-baslik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-button-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.referans-contact-button {
    padding: 16px 32px;
    border: 1px solid #22282B;
    border-radius: 130px;
    font-family: Manrope;
    font-weight: 600;
    font-size: 16px;
    color: #22282B;
    background-color: #fff;
    margin-top: 52px;
}

.logo-box {
    padding: 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.logo-box:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.logo-img {
    object-fit: contain;
}
.parent {
display: grid;
grid-template-columns: repeat(5, 1fr);
column-gap: 25px;
}


@media (max-width: 991px) {
    .section-title {
    font-family: Manrope;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #22282B;
}
.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
}
}
@media (max-width: 768px) {
    .parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
}
}
@media (max-width: 425px) {
    .section-title {
    font-family: Manrope;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #22282B;
}
.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 25px;
    align-items: center;
}
}