.incotec-dos-donts {
    font-family: "Montserrat", sans-serif;
}

/* Title (supports h2-h6 and div with identical appearance) */
.incotec-dos-donts__title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 0;
    line-height: 1.3;
    color: #002D47;
}

.incotec-dos-donts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Columns */
.incotec-dos-donts__column {
    border-radius: 12px;
    padding: 24px;
}

.incotec-dos-donts__column--dos {
    background-color: #f0fdf4;
}

.incotec-dos-donts__column--donts {
    background-color: #fef2f2;
}

/* Headers */
.incotec-dos-donts__header {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.incotec-dos-donts__column--dos .incotec-dos-donts__header {
    color: #166534;
}

.incotec-dos-donts__column--donts .incotec-dos-donts__header {
    color: #991b1b;
}

/* Items */
.incotec-dos-donts__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.incotec-dos-donts__item + .incotec-dos-donts__item {
    margin-top: 12px;
}

/* Icons */
.incotec-dos-donts__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.incotec-dos-donts__icon--do {
    background-color: #166534;
}

.incotec-dos-donts__icon--dont {
    background-color: #991b1b;
}

.incotec-dos-donts__icon--do::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.incotec-dos-donts__icon--dont::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Text */
.incotec-dos-donts__text {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #002D47;
}

/* Responsive */
@media (max-width: 767px) {
    .incotec-dos-donts__grid {
        grid-template-columns: 1fr;
    }
}
