
.Delivery_section__umut {
    padding: 80px 0;
    background-color: #fcfcfc;
    font-family: inherit;
}

.Delivery_container__umut {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.Delivery_header__umut {
    text-align: center;
    margin-bottom: 50px;
}

.Delivery_title__umut {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.Delivery_subtitle__umut {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Tablo Stilleri */
.Delivery_tableWrapper__umut {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.Delivery_table__umut {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.Delivery_table__umut thead {
    background-color: #a80001; /* Umut Kırmızısı */
    color: #ffffff;
}

.Delivery_table__umut th {
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.Delivery_table__umut td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 1rem;
}

.Delivery_table__umut tbody tr:hover {
    background-color: #f9f9f9;
}

.Delivery_footer__umut {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.Delivery_footer__umut strong {
    color: #333;
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 768px) {
    .Delivery_table__umut thead {
        display: none;
    }
    .Delivery_table__umut, .Delivery_table__umut tbody, .Delivery_table__umut tr, .Delivery_table__umut td {
        display: block;
        width: 100%;
    }
    .Delivery_table__umut tr {
        margin-bottom: 15px;
        border: 1px solid #eee;
    }
    .Delivery_table__umut td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .Delivery_table__umut td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        width: 45%;
        text-align: left;
        font-weight: 700;
        color: #a80001;
    }
}