.mapples-section {
            background-color: #ffffff;
            width: 100%;
            margin: 0;
            padding: 10px 0 55px;
            position: relative;
        }

        .mapples-toggle {
            display: none;
            padding: 1rem;
            background-color: #eff6ff;
            border-bottom: 1px solid #bfdbfe;
            width: 100%;
        }

        .mapples-toggle button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: #2563eb;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .mapples-toggle button:hover {
            background-color: #1d4ed8;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .mapples-toggle button:active {
            transform: translateY(0);
        }

        .mapples-container {
            position: relative;
            width: 100%;
            height: 450px;
            background-color: #e5e7eb;
            overflow: hidden;
            transition: height 0.3s ease;
            margin: 0;
            padding: 0;
            top: 60px;
        }

        .mapples-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            margin: 0;
            padding: 0;
        }

        .mapples-container.mapples-hidden {
            height: 0;
        }

        .mapples-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }

        /* Mobile Styles (up to 768px) */
        @media (max-width: 768px) {
            .mapples-toggle {
                display: block;
            }

            .mapples-container {
                height: 300px;
            }

            .mapples-toggle button {
                font-size: 0.9rem;
                padding: 0.625rem 0.875rem;
            }
        }

        /* Tablet Styles (769px to 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .mapples-container {
                height: 500px;
            }
        }

        /* Desktop Styles (1025px and above) */
        @media (min-width: 1025px) {
            .mapples-container {
                height: 575px;
            }
        }

        /* Large Desktop Styles (1440px and above) */
        @media (min-width: 1440px) {
            .mapples-container {
                /*height: 340px;*/
            }
        }