/* ফন্ট এবং বেসিক সেটআপ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SolaimanLipi', Arial, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* হেডার ডিজাইন */
header {
    background-color: #006a4e; /* বাংলাদেশ পতাকার সবুজ */
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
}

/* সেকশন টাইটেল */
.section-title {
    background-color: #f42a41; /* লাল হাইলাইট */
    color: white;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* গ্রিড এবং কার্ড ডিজাইন */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-top: 4px solid #006a4e;
}

.card h3 {
    color: #006a4e;
    margin-bottom: 10px;
}

.card ul {
    padding-left: 20px;
}

/* টেবিল ডিজাইন */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #006a4e;
    color: white;
}

/* ইনফো বক্স */
.info-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background: #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

/* রোগ সংক্রান্ত বক্স */
.disease-container {
    display: flex;
    gap: 20px;
}

.disease-box {
    background: #fff;
    padding: 20px;
    border-left: 10px solid #f42a41;
    border-radius: 5px;
    flex: 1;
}

/* কোটেশন */
blockquote {
    background: #fff;
    border-left: 5px solid #006a4e;
    padding: 20px;
    font-style: italic;
    font-size: 1.1rem;
}

/* ফুটার */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

/* রেসপনসিভ */
@media (max-width: 768px) {
    .disease-container {
        flex-direction: column;
    }
}