:root {
    --primary-red: #ff3131;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}





.breadcrumb-section {
    background-image: url('../images/about/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
    padding-top: 8rem;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease-out;
    z-index: 0;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00000087, #ff313167);
    z-index: 1;
}

.breadcrumb-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 1rem 2rem;
    border-radius: 2em;
    margin: 0;
    background: linear-gradient(to right, #000000, #ff3131);
    font-size: 1rem;
    justify-content: center;

}

.breadcrumb-list li {
    color: white;
}

.breadcrumb-list li a {
    color: white;
}
















.contact-socials-icons-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-socials-icons {
    width: 50px;
    height: 50px;

    background-color: rgba(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-socials-icons:hover {
    background: linear-gradient(to right, #000000, #ff3131);
}

.contact-socials-icons img {
    width: 30px;
}





.faq-accordion {
    display: flex;
    justify-content: center;
    padding: 100px 0 80px;
}

.faq-accordion-row {
    align-items: center;
    display: flex;
}


.faq-social {
    background-color: #F5F6F7;
    padding: 40px 20px;
    border-radius: 10px;
}


.faq-social h2 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(to right, #000000, #ff3131);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.faq-social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.faq-call {
    text-align: center;
    padding: 20px 10px;
    margin-top: 20px;
    border-radius: 5px;
    background: linear-gradient(to top, #000000, #ff0000a4);

}

.faq-call span {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}

.faq-call p {
    font-size: 1rem;
    color: white;
    margin-bottom: 10px;
}

.btn-quote {
    align-items: center;
    justify-content: center;
}


.btn-quote a {
    color: wheat;
    align-items: center;
    display: flex;
}

.btn-quote a img {
    width: 24px;
    height: auto;
    margin-right: 5px;
}







.accordion {
    width: 100%;
}

.item {
    background-color: #F5F6F7;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.question {
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: rgb(0, 0, 0);
}

.answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    line-height: 1.5;
    color: #810d0d;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.item.open .answer {
    max-height: 200px;
    padding: 16px;
}

.icon {
    transition: transform 0.3s ease;
}

.item.open .icon {
    transform: rotate(45deg);
    color: var(--primary-red);
    /* + becomes × */
}