    /* Location Section Styles */
        .location-section {
            margin-top: 40px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            max-width: 800px;
            margin: 40px auto;
            border: 1px solid var(--border-color);
        }
        
        .location-container {
            padding: 20px;
        }
        
        .location-container h2 {
            color: var(--perodua-red);
            text-align: center;
            margin-bottom: 30px;
            font-size: 24px;
        }
        
        .location-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
        }
        
        .location-info {
            flex: 1;
            min-width: 300px;
        }
        
        .location-info h3 {
            color: var(--perodua-dark);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .location-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .location-info i {
            color: var(--perodua-red);
            width: 20px;
        }
        
        .location-info a {
            color: var(--perodua-dark);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .location-info a:hover {
            color: var(--perodua-red);
        }
        
        .google-map {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .google-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        @media (max-width: 768px) {
            .location-content {
                flex-direction: column;
            }
            
            .location-info, .google-map {
                width: 100%;
            }
            
            .google-map {
                height: 300px;
            }
        }