        /* Main Content */
        .container_footer {
            max-width: 1250px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .contact-card.social-card {
            grid-column: 1 / -1;
        }

        .contact-card {
            background: white;
            padding-bottom: 2rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0,0,0,0.15);
        }

        .contact-icon {
            /* background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2.3rem;
        }

        .contact-card h3 {
            color: #1e3a8a;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .contact-card p,
        .contact-card a {
            color: #666;
            text-decoration: none;
            line-height: 1.6;
        }

        .contact-card a:hover {
            color: #3b82f6;
        }

        /* Social Media */
        .social-links {
            display: flex;
            gap: 4rem;
            justify-content: center;
            margin-top: 1rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s, opacity 0.3s;
        }

        .social-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .social-icon:hover {
            transform: scale(1.1);
            opacity: 0.8;
        }

        /* Map Section */
        .map-section {
            margin-top: 4rem;
        }

        .map-section h2 {
            color: #1e3a8a;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            display: block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-card.social-card {
                max-width: 100%;
            }
        }