﻿:root {
    --brand-red: #E31D2D;
    --brand-yellow: #ffd33b;
    --brand-yellow-hover: #ffbf00;
    --text-on-red: #ffffff;
}

body {
    font-size: 18px !important;
    font-family: "Poppins", sans-serif;
}

header.header-red {
    background-color: var(--brand-red);
}

.topbar {
    padding: .5rem 0;
    line-height: 1;
}

    .topbar a {
        color: var(--text-on-red);
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        font-size: .95rem;
    }

.navbar-red {
    background-color: var(--brand-red);
}

    .navbar-red .nav-link {
        color: var(--text-on-red) !important;
    }

    .navbar-red .navbar-toggler {
        border: none;
    }

    .navbar-red .navbar-brand img {
        height: 52px;
    }

.nav-item {
    margin-left: 15px;
    margin-right: 15px;
}

.btn-yellow {
    background-color: var(--brand-yellow);
    border-radius: 999px;
    font-weight: 700;
    padding: .5rem 1rem;
    border: 0;
}

    .btn-yellow:hover {
        background-color: var(--brand-yellow-hover);
        color: #000;
    }

.about-section {
    padding: 2rem 0;
}

    .about-section h1 {
        font-weight: 700;
        font-size: 2rem;
    }

        .about-section h1 .highlight {
            color: var(--brand-red);
        }

    .about-section p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-section a.more-link {
        color: var(--brand-red);
        font-weight: 600;
        text-decoration: none;
    }

        .about-section a.more-link:hover {
            text-decoration: underline;
        }

.info-section {
    background-color: #fbc02d; /* yellow */
    padding: 3rem 2rem;
    border-top-right-radius: 50px;
}

.info-block {
    margin-bottom: 2rem;
}

.arrow-label {
    display: inline-block;
    background-color: #30a135;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.64rem 1.5rem;
    position: relative;
    text-transform: uppercase;
    color: white;
}

    .arrow-label::after {
        content: "";
        position: absolute;
        top: 0px;
        right: -18px;
        width: 0;
        height: 0px;
        border-top: 22px solid transparent;
        border-bottom: 22px solid transparent;
        border-left: 20px solid #30a135;
    }

.info-section ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.info-section li {
    margin-bottom: .5rem;
    font-size: 1rem;
}

.contact-section {
    padding: 2rem 1rem;
    color: #333;
}

.contact-item {
    margin-bottom: 1.5rem;
}

    .contact-item h4 {
        font-weight: 700;
        color: #E31D2D; /* Red */
        margin-bottom: .25rem;
        font-size: 1.25rem;
    }
    
     .contact-item h5 {
        font-weight: 700;
        color: #E31D2D; /* Red */
        margin-bottom: .25rem;
        font-size: 1.25rem;
    }

    .contact-item i {
        color: #e31d2d;
        margin-right: .5rem;
        font-size: 1.2rem;
    }

    .contact-item p {
        margin: 0;
    }

.contact-buttons .btn {
    background-color: #e31d2d;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}

    .contact-buttons .btn:hover {
        background-color: #c31321;
    }

.footer {
    background-color: #e31d2d; /* Red */
    padding: 2rem 1rem;
    color: #fff;
}

.footer-nav a {
    color: #fff;
    text-decoration: none !important;
    margin: 0 1rem;
}

    .footer-nav a:hover {
        text-decoration: underline;
    }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    margin-left: .5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background-color: #fff;
        color: #e31d2d;
    }

.footer-logo img {
    height: 60px;
}

.accordion-button{font-weight: 600 !important}