﻿.quote-box {
    border: 2px dashed red;
    border-radius: 8px;
    padding: 15px;
    display: inline-block;
}

.contact-section {
    margin: 40px auto;
}

    .contact-section h2 {
        font-weight: 700;
        color: #e00000;
        margin-bottom: 20px;
    }

    .contact-section img {
        width: 200px;
        margin-bottom: 20px;
    }

.btn-custom, .btn-custom:focus {
    background-color: #e00000;
    color: #fff;
    width: 100%;
}

    .btn-custom:hover {
        background-color: #c10000;
    }

.contact-info h6 {
    font-weight: 700;
    color: #e00000;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e00000;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
}

    .social-media a:hover {
        background-color: #c10000;
    }

.custom-box {
    border: 1px solid #f28b82;
    border-radius: 15px;
    padding: 2rem;
    background-color: #fff;
}

.section-header {
    background-color: #FFCC40;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.market-features {
    background: #fff
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    height: 100%;
    border-right: 1px dashed #d8d8d8;
    background-color: #FEF9E6;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: #e31d2d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

    .feature-icon i {
        color: #fff;
        font-size: 22px;
        line-height: 1
    }

.feature-content h6 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    color: #1d1d1d
}

.feature-content p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #555
}

@media(max-width:991.98px) {
    .feature-box {
        border-right: 0;
        border-bottom: 1px dashed #d8d8d8
    }

    .row > .col-lg:last-child .feature-box {
        border-bottom: 0
    }
}