:root {
    --primary-color: #f59000;
    --secondary-color: #800000;
    --white: #fff;
    --black: #000000;
}


.footer-section {
    background: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid #fff;
    display: inline-block;
    color: var(--primary-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    background: #fff;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #000;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-links li i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 0.9rem;
}

.footer-bottom a{
    text-decoration: none;
    color: var(--primary-color);
}