.customs-section {
    padding: 40px 0;
}

.customs-section .customs-title {
    color: #7E361D;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.customs-section .customs-subtitle {
    color: #000000;
    font-size: 16px;
    line-height: 33px;
    /*font-weight: 400;*/
    margin-bottom: 28px;
    text-align: justify;
}

.customs-section .customs-list {
  padding: 0;
  margin: 0;
}

.customs-section .customs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #F0E4DA;
    font-size: 0.91rem;
    color: #3A2210;
    font-weight: 600;
    line-height: 1.55;
}

.customs-section .customs-list li:last-child {
    border-bottom: none;
}


.customs-section .customs-list li .bullet-icon {
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    background: #6B2010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customs-section .customs-list li .bullet-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #D4845A;
    border-radius: 50%;
    display: block;
}

.customs-section .image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customs-section .image-col img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .customs-section {
        padding: 40px 20px;
    }

    .customs-section .customs-title {
        font-size: 2rem;
    }
}