/* About Us Page Styles */
.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-heading {
    text-align: center;
    font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
    margin-bottom: 32px;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}

.about-img {
    flex: 1;
    /* max-width: 500px; */
    width: 50%;
    border-radius: 12px;
}

.about-text-center {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
}

.about-section {
    margin-bottom: 48px;
}

.about-section-title {
    text-align: center;
    font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
    margin-bottom: 16px;
}

.about-section-text {
    text-align: center;
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-list-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-list {
    margin-bottom: 16px;
}

.about-list li {
    list-style: none;
}

.about-brands-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 48px;
}

.about-brand {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-brand-title {
    color: #444;
}

.about-brand-list {
    text-align: center;
    padding: 0;
}

.about-brand-list li {
    list-style: none;
}
ul.about-brand-list a {
    color: black;
    text-decoration: none;
}

.about-brand-link {
    display: inline-block;
    margin-top: 10px;
    color: white;
    background-color: #e60000;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
}
.about-brand-link:hover {
    color: white;
}

.about-family-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-flex-text {
    flex: 1;
    font-size: 1.15rem;
}


@media (max-width: 1024px) {
    .about-flex {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .about-flex.reverse {
        flex-direction: column-reverse;
    }

    .about-img {
        max-width: 100%;
        width: 100%;
        margin-bottom: 16px;
    }

    .about-text-center,
    .about-flex>div[style] {
        text-align: center;
        font-size: 1.1rem;
    }

    .about-list-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .about-container {
        padding: 20px 5px;
    }

    .about-heading {
        font-size: 32px;
    line-height: 1.1;
    }

    .about-section-title {
        font-size: 32px;
    line-height: 1.1;
    }

    .about-section-text {
        font-size: 1rem;
    }

    .about-brands-flex {
        flex-direction: column;
        gap: 16px;
    }

    .about-brand {
        min-width: 180px;
    }
}

/* Contact Banner */
.contact-banner {
    width: 100%;
    background: #A51336;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-banner h2 {
    color: white;
    font-size: 32px;
    font-weight: 800;
    line-height: 40px;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px;
    border-radius: 4px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.location-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18.45px;
    left: 3px;
    top: 2.77px;
    background: #9F1238;
}

.phone-icon::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #9F1238;
}

.contact-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #080808;
}

.direction-link {
    font-weight: 600;
    text-decoration: underline;
    color: #080808;
}

.fax-item {
    display: flex;
    align-items: center;
}

.contact-label {
    color: #A51336;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-right: 8px;
}


@media (max-width: 576px) {

    .contact-text {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-label {
        font-size: 16px;
    }

    .contact-banner h2 {
        font-size: 28px;
    }

    
}


@media (max-width: 900px) {

    .contact-banner {
        flex-direction: column;
    }

    .contact-item {
        width: 100%;
        justify-content: center;
    }
}