body {
    direction: rtl;
    font-family: 'Vazir', sans-serif;
    background-color: #f4f7fa;
    color: #2c3e50;
    margin: 0;
    padding: 0;
}

.geo-body {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: auto;
}

.info-section {
    background: linear-gradient(to top left, #ffffff, #f9f9f9);
    margin-bottom: 2.5rem;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.info-section:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.info-section h2 {
    color: #0a3d62;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    border-right: 6px solid #f1c900;
    font-family: Vazir;
    padding-right: 1rem;
}

.info-section p,
.info-section ul {
    line-height: 2.2;
    color: #34495e;
    font-family: Vazir;
    font-size: 1.05rem;
    text-align: justify;
}

.info-section ul {
    padding-right: 1.5rem;
    list-style-type: disc;
    font-family: Vazir;
}

.info-section ul li {
    margin-bottom: 0.75rem;
    font-family: Vazir;
}


.info-section.animate {
    animation: fadeIn 2s forwards;
}

.info-section.animate .animate-text {
    animation: fadeText 1.2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeText {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #1e272e;
    color: #dcdde1;
    font-size: 0.95rem;
    margin-top: 4rem;
}

@font-face {
    font-family: 'Vazir';
    src: url('../webfonts/Vazir/Vazir.woff2') format('woff2');
}
