.section .btn_sec {
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    text-decoration: none;
    background-color: #A81A1A; /* Matte color */
    font-weight: 700;
    color: #FFF; /* Text color */
    border: 2px solid #6B2325; /* Border color */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.section .btn_sec.last{
    margin: 0.5ren 0px 1rem 0px;
}

.section .btn_sec:hover {
    background-color: #8f292d;
    border: 2px solid #6B2325
}

