* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', 'Shabnam', 'Samim', sans-serif;
    font-variant-numeric: normal;
}

body {
    /* background-image: url('bg.png'); */
    background-size: cover;
    background-position: center 85px;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    direction: rtl;
    color: #333;
}

.content {
    max-width: 800px;
    margin: 100px auto 80px;
    padding: 20px;
    text-align: right;
    flex: 1;
}

.content h1 {
    font-size: 2.5rem;
    color: #00c0cf;
    margin-top: 20px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.button {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1s ease-in;
}

.button_sfhh {
    /* float: left; */
    text-align: center;
    min-width: 60px;
    margin: 7px;
}

.button:hover {
    background: #d0d0d0;
    transform: scale(1.05);
}

footer {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

footer .footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 100px;
    margin: 0 15px 0 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin: 0;
}

.contact-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

footer .footer-links {
    margin: 10px 0;
}

footer .footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

footer .footer-links a:hover {
    color: #555;
    transform: scale(1.1);
}

footer .social-icons a {
    font-size: 1.2rem;
    color: #666;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-icons a:hover {
    color: #333;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar {
    background: #ffffff;
    padding: 14px 20px 5px 10px;
    text-align: right;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* .navbar a {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.navbar a:hover {
    background: #d0d0d0;
    transform: scale(1.05);
} */

.navbar-logo {
    max-width: 60px;
    /* کمی کوچکتر از لوگوی فوتر */
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}