<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Responsive Map Section</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .map {
            width: 100%;
            min-height: 60vh;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .map::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"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="70" cy="70" r="2.5" fill="white" opacity="0.1"/></svg>') repeat;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .map-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 0px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 800px;
            width: 100%;
            border: 1px solid #d5d5d5;
        }

        .map-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .map-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .map-iframe {
            width: 100%;
            height: 300px;
            border-radius: 15px;
            border: none;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.6; }
        }

        .map-info {
            font-size: 0.95rem;
            color: #6c757d;
            font-style: italic;
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .map {
                min-height: 50vh;
                padding: 1rem;
            }

            .map-container {
                padding: 2rem 1.5rem;
                border-radius: 15px;
            }

            .map-title {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .map-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .map-iframe {
                height: 200px;
                border-radius: 10px;
            }

            .map-info {
                font-size: 0.85rem;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .map {
                min-height: 40vh;
                padding: 0.5rem;
            }

            .map-container {
                padding: 1.5rem 1rem;
                border-radius: 12px;
            }

            .map-title {
                font-size: 1.8rem;
            }

            .map-subtitle {
                font-size: 0.9rem;
            }

            .map-iframe {
                height: 150px;
            }
        }

        /* Desktop Large Screens */
        @media (min-width: 1200px) {
            .map {
                min-height: 70vh;
                padding: 0;
            }

            .map-container {
                padding: 0px;
                max-width: 1250px;
            }

            .map-title {
                font-size: 3rem;
            }

            .map-subtitle {
                font-size: 1.3rem;
            }

            .map-iframe {
                height: 400px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .map {
                min-height: 55vh;
                padding: 2rem;
            }

            .map-container {
                padding: 2.5rem;
            }

            .map-title {
                font-size: 2.2rem;
            }

            .map-iframe {
                height: 250px;
            }
        }

        /* Hover Effects for Desktop */
        @media (hover: hover) {
            .map-container {
                transition: all 0.3s ease;
            }

            .map-container:hover {
                transform: translateY(-5px);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            }

            .map-iframe:hover {
                transform: scale(1.02);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            }
        }
        
        