.footer-container {
    background-color: #f8f9fa;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

/* استایل فوتر */
.site-footer {
    background: linear-gradient(135deg, #1a3a5f, #2c5282);
    color: #fff;
    padding: 2.5rem 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: #38b2ac;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-section ul li i {
    margin-left: 0.8rem;
    color: #38b2ac;
    width: 20px;
    text-align: center;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-section a:hover {
    color: #38b2ac;
}

.footer-section p {
    line-height: 1.8;
    color: #cbd5e0;
}

.copyright {
    text-align: center;
    padding: 1.5rem 0 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 0.9rem;
}

/* رسپانسیو برای دستگاه‌های کوچک */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        padding: 1rem 0.5rem 0;
    }
}