.maps {
            width: 100%;
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .maps::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .maps-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }

        .maps-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out;
        }

        .maps-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .maps-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto;
        }

        .maps-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .map-card {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255,255,255,0.2);
            margin-bottom: -55px;
        }

        .map-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        .map-frame {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .map-frame:hover {
            transform: scale(1.02);
        }

        .map-info {
            margin-top: 1.5rem;
            text-align: center;
        }

        .map-location {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .map-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        .maps-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-text {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .maps {
                padding: 1.5rem 0;
            }

            .maps-container {
                padding: 0 0.5rem;
            }

            .maps-title {
                font-size: 2rem;
            }

            .maps-subtitle {
                font-size: 1rem;
            }

            .map-card {
                padding: 1.5rem;
                border-radius: 15px;
            }

            .map-frame {
                height: 300px;
            }

            .map-location {
                font-size: 1.3rem;
            }

            .maps-features {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-top: 2rem;
            }

            .feature-card {
                padding: 1rem;
            }

            .feature-icon {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .maps-title {
                font-size: 1.8rem;
            }

            .map-card {
                padding: 1rem;
            }

            .map-frame {
                height: 250px;
            }
        }

        /* Desktop Enhancements */
        @media (min-width: 1024px) {
            .maps-content {
                grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
                width: 100%;
            }

            .map-frame {
                height: 450px;
            }

            .maps-features {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1200px) {
            .maps-title {
                font-size: 3.5rem;
            }

            .maps-subtitle {
                font-size: 1.3rem;
            }
        }



        @media only screen and (max-width: 600px) {

            .maps-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
            padding: 20px 0px 0px 20px;
            margin-bottom: -55px;
}
.map-card {
    padding: 1rem;
    margin-bottom: 0px;
  }
        }