/* تنظیم box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'IranSans', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 0.8; /* تنظیم فاصله بین خطوط */
}

.container {
    max-width: 912px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease; /* انیمیشن نرم برای تغییر حالت */
}

.container:hover {
    transform: translateY(-10px); /* بالا آمدن کانتینر هنگام هاور */
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.header img {
    width: 411px;
    height: auto;
    border-radius: 8px;
}

.lab-name {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-top: 10px;
}

.info {
    margin-bottom: 20px;
}

.info p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
    line-height: 0.8; /* فاصله بین خطوط */
}

.introduction {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 0.8;
}

.research-fields {
    margin-top: 20px;
}

.research-fields h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.research-fields ul {
    list-style-type: disc;
    padding-left: 20px;
}

.research-fields ul li {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    line-height: 0.8;
}
