.about-section {
    background: linear-gradient(to top, #0B0B0B, #222222);
    padding: 80px 20px;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
}

/* Add direction based on html[dir] attribute */
html[dir="rtl"] .about-section {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] .about-section {
    direction: ltr;
    text-align: left;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    color: #ff4d4f;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ff4d4f;
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #ff4d4f;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-description {
    font-size: 18px;
    color: #eee;
    margin-bottom: 20px;
}

.products-list,
.values-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.products-list li,
.values-list li {
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #f4f4f4;
    position: relative;
    transition: 0.3s;
}

.products-list li::before,
.values-list li::before {
    content: "✔";
    color: #ff4d4f;
    font-weight: bold;
    margin-inline-end: 10px;
}

.products-list li:hover,
.values-list li:hover {
    background: rgba(168, 58, 58, 0.3);
    transform: translateX(5px);
}