﻿/* Genel tablo ayarları */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

/* Başlık hücreleri */
thead th {
    background-color: #2F62AC;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 12px;
    text-align: left;
    border-bottom: 3px solid #EA5B0C;
}

/* Gövde satırları renk geçişi */
tbody tr:nth-child(even) {
    background-color: #DFE5F0;
}

tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

/* Hücre içeriği */
tbody td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

/* Hover efekti */
tbody tr:hover {
    background-color: #F9E2D6;
    transition: background-color 0.3s ease;
}

/* İlk sütun özel biçimi */
td:first-child, th:first-child {
    width: 22%;
    font-weight: bold;
    color: #000000;
    text-align: left;
}

/* Diğer sütunlar */
td:not(:first-child), th:not(:first-child) {
    width: 39%;
    text-align: left;
}

/* Kenarlık temizliği */
table, th, td {
    border: none;
}


.dia-feature-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 40px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.dia-image {
    flex: 1 1 50%;
}

    .dia-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: none;
        padding: 0;
        border: none;
        background: none;
        display: block;
    }

.dia-text {
    flex: 1 1 50%;
}

    .dia-text h3 {
        font-size: 26px;
        font-weight: bold;
        color: #2F62AC;
        margin-bottom: 18px;
    }

    .dia-text ul {
        list-style-type: disc;
        padding-left: 20px;
        color: #333;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }

        .dia-text ul li {
            margin-bottom: 10px;
        }

.vc_box_border_grey {
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: none !important;
}

.akordiyon-resim-left > div img, .ic-resim img {
    border-radius: 42% 12% 0% 0%;
    overflow: hidden;
}
.akordiyon-resim-right > div img, .ic-resim img {
    border-radius: 12% 42% 0% 0%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .dia-feature-box {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .dia-text {
        text-align: center;
    }

        .dia-text ul {
            text-align: left;
            padding-left: 30px;
        }
}
