body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background: linear-gradient(132deg, pink, #591BC5, #212335);
    background-size: cover;
    color: white;
}

/* Header */
header {
    padding: 20px;
    font-size: 24px;
}
/* Bullet Point for each <p> */
.content-box p::before {
    content: "• ";  /* اضافه کردن بولت */
    color: white;   /* رنگ بولت */
    font-weight: bold;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
/* Content Box */
.content-box {
    background: rgba(255, 255, 255, 0.2); /* مستطیل شفاف */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1000px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* List Styling */
ul {
    list-style-type: none;
    padding: 0;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 33.5px 0;
    margin-top: 0px;
    background-color: rgba(75, 28, 94, 0.2);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #591BC5;
}

/* استایل‌های ناوبری */
nav {
    position: fixed; /* نوار ناوبری ثابت در بالای صفحه */
    top: 10px;
    right: 0; /* قرارگیری در گوشه سمت راست */
    padding: 10px 20px; /* فاصله داخلی */
    z-index: 1000;
    transition: top 0.3s ease; /* مطمئن شوید نوار ناوبری بالای سایر عناصر است */
}

nav ul {
    list-style: none; /* حذف علامت‌های لیست */
    margin: 0;
    padding: 0;
    display: flex; /* نمایش افقی آیتم‌ها */
    gap: 20px; /* فاصله بین آیتم‌ها */
}
nav ul li {
    display: inline-block; /* نمایش افقی آیتم‌ها */
}
nav ul li a {
    color: #fff; /* رنگ متن سفید */
    text-decoration: none; /* حذف زیرخط لینک‌ها */
    font-size: 16px;
    transition: color 0.3s ease; /* انیمیشن تغییر رنگ */
}

nav ul li a:hover {
    color: #591BC5; /* تغییر رنگ متن هنگام هاور */
}

.pdf-container {
    background: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 20px;
    }
    .header-content {
        text-align: center;
    }
    nav ul {
        flex-direction: column; /* نمایش عمودی در دستگاه‌های کوچک */
        gap: 10px;
    }
    .content-box {
        width: 90%;
    }
}