body {
    box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif;
}

.french-blue {
    background-color :#1e3a8a;
}

.trust-badge {
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.footer-link {
    transition: all 0.3s ease;
    padding: 10px 16px;
    margin: -10px -16px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(-3px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #3b82f6;
    transform: scale(1.1);
}

.grid {
    display: grid;
    align-items: start;
    align-content: center;
    justify-items: center;
    justify-content: space-between;
}