
 /* footer style.css */

        footer {
            background-color: #ffffff;
            color: #1f2937;
            padding: 3rem 0;
            font-family: 'League Spartan', sans-serif;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 3.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 70px;
        }
        .footer-container-data {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 70px;
        }
        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1f2937;
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        .footer-section ul li {
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }
        .footer-section ul li a {
            color: #4b5563;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-section ul li a:hover {
            color: #2563eb;
        }
        .footer-section p {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.5;
        }
        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e5e7eb;
            text-align: center;
        }
        .footer-bottom p {
            color: #6b7280;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }


 /* footer style.css end */