/* تنظیمات پایه */
body {
    font-family: Tahoma, sans-serif;
    background-color: #f7f9f7; /* پس‌زمینه روشن */
    color: #1b3a2f;           /* رنگ متن اصلی */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* هدر و ناوبری */
header {
    background-color: #1b3a2f; /* سبز تیره */
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
}

nav ul li a.active {
    background-color: #4CAF50; /* سبز روشن */
    border-radius: 5px;
}

/* بخش همکاران ویژه بالا */
.partners-top {
    text-align: center;
    margin: 20px 0;
}

.partners-top ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.partners-top ul li a {
    text-decoration: none;
    color: #1b3a2f;
    font-weight: bold;
}

/* بخش اصلی سایت */
.container {
    display: flex;
    margin: 20px;
    gap: 20px;
}

/* سایدبار */
aside.sidebar {
    width: 25%;
    padding: 15px;
    background-color: #e6f0e6;
    border-radius: 5px;
}

/* محتوا */
section.content {
    width: 75%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* عناوین */
h2 {
    color: #1b3a2f;
}

/* فوتر */
footer {
    background-color: #1b3a2f;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
}

/* لینک‌ها در محتوا */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* فرم تماس */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #3e8e41;
}
