.elementor-1836 .elementor-element.elementor-element-4d3ce9d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-88916ed */.about-us-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Lexend Deca', sans-serif;
    overflow: hidden;
}

/* অ্যানিমেশন কি-ফ্রেমস */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade { animation: fadeInUp 1s ease forwards; }
.animate-slide { animation: fadeInUp 1s ease forwards; animation-delay: 0.3s; }

.about-header { text-align: center; margin-bottom: 50px; }
.about-header h1 { font-size: 36px; color: #333; margin-bottom: 10px; }

.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.about-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #4CAF50;
    transition: transform 0.3s ease;
}

.about-box:hover { transform: translateY(-10px); }

.about-policy {
    margin-top: 40px;
    padding: 30px;
    background: #f4f6f8;
    border-radius: 20px;
}

.about-policy ul { list-style: none; padding: 0; }
.about-policy li { 
    margin-bottom: 15px; 
    line-height: 1.6; 
    padding-left: 25px; 
    position: relative; 
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; }
}/* End custom CSS */