.section {
    @apply py-12;
}

.section-blue {
    @apply bg-gradient-to-r from-blue-800 to-blue-600 text-white;
}

.footer {
    @apply mt-auto; /* Ensures footer sticks to bottom */
}

.footer a {
    @apply transition-colors duration-200;
}

.footer .social-links a:hover {
    @apply opacity-80;
}

.footer .contact-info i {
    @apply w-6;
}

/* Add these additional styles to match index.html */
.footer .max-w-4xl {
    @apply mx-auto px-4;
}

.footer .grid {
    @apply gap-8;
}

.footer h3 {
    @apply text-lg font-bold mb-4;
}

.footer .space-y-2 {
    @apply text-base;
}

/* Specific fix for "Union City First" alignment */
@media (min-width: 768px) {
    .footer [data-i18n="footerOrgName"] {
        text-align: right;
        width: 100%;
    }
}

/* Rules below were removed */ 