/* Add custom CSS styles below */ 
/* تغيير لون العناوين الرئيسية */
h2 {
    color: #541c25;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}
.marquee-content {
    display: flex;
    animation: marquee-animation 20s linear infinite;
}
@keyframes marquee-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.brand {
    margin: 0 30px;
    font-size: 24px;
    font-weight: bold;
    color: #541c25;
}